├── .gitignore ├── LICENSE ├── README.md ├── examples └── example_usage.py ├── setup.py └── src ├── __init__.py ├── api ├── __init__.py ├── main.py ├── models.py └── routes.py ├── cli.py ├── core ├── __init__.py ├── clustering.py ├── embeddings.py ├── extractor.py ├── graph_builder.py └── relationship_detector.py └── utils ├── __init__.py ├── config.py ├── file_processor.py ├── logger.py └── text_preprocessor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/README.md -------------------------------------------------------------------------------- /examples/example_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/examples/example_usage.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/setup.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/api/__init__.py -------------------------------------------------------------------------------- /src/api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/api/main.py -------------------------------------------------------------------------------- /src/api/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/api/models.py -------------------------------------------------------------------------------- /src/api/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/api/routes.py -------------------------------------------------------------------------------- /src/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/cli.py -------------------------------------------------------------------------------- /src/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/core/__init__.py -------------------------------------------------------------------------------- /src/core/clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/core/clustering.py -------------------------------------------------------------------------------- /src/core/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/core/embeddings.py -------------------------------------------------------------------------------- /src/core/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/core/extractor.py -------------------------------------------------------------------------------- /src/core/graph_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/core/graph_builder.py -------------------------------------------------------------------------------- /src/core/relationship_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/core/relationship_detector.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/utils/__init__.py -------------------------------------------------------------------------------- /src/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/utils/config.py -------------------------------------------------------------------------------- /src/utils/file_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/utils/file_processor.py -------------------------------------------------------------------------------- /src/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/utils/logger.py -------------------------------------------------------------------------------- /src/utils/text_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openimpactai/KnowledgeGrapher/HEAD/src/utils/text_preprocessor.py --------------------------------------------------------------------------------