├── .gitignore ├── .vscode └── settings.json ├── README.md ├── agents └── lightrag.py ├── lightrag ├── __init__.py ├── api │ ├── .env.aoi.example │ ├── .gitignore │ ├── azure_openai_lightrag_server.py │ ├── lollms_lightrag_server.py │ ├── ollama_lightrag_server.py │ ├── openai_lightrag_server.py │ └── requirements.txt ├── base.py ├── kg │ ├── __init__.py │ ├── age_impl.py │ ├── chroma_impl.py │ ├── gremlin_impl.py │ ├── milvus_impl.py │ ├── mongo_impl.py │ ├── neo4j_impl.py │ ├── oracle_impl.py │ ├── postgres_impl.py │ ├── postgres_impl_test.py │ └── tidb_impl.py ├── lightrag.py ├── llm.py ├── operate.py ├── prompt.py ├── storage.py └── utils.py ├── requirements.txt ├── server.py └── test ├── book.txt └── book_zh.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Codegeex.RepoIndex": true 3 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/README.md -------------------------------------------------------------------------------- /agents/lightrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/agents/lightrag.py -------------------------------------------------------------------------------- /lightrag/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/__init__.py -------------------------------------------------------------------------------- /lightrag/api/.env.aoi.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/api/.env.aoi.example -------------------------------------------------------------------------------- /lightrag/api/.gitignore: -------------------------------------------------------------------------------- 1 | inputs 2 | rag_storage 3 | -------------------------------------------------------------------------------- /lightrag/api/azure_openai_lightrag_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/api/azure_openai_lightrag_server.py -------------------------------------------------------------------------------- /lightrag/api/lollms_lightrag_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/api/lollms_lightrag_server.py -------------------------------------------------------------------------------- /lightrag/api/ollama_lightrag_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/api/ollama_lightrag_server.py -------------------------------------------------------------------------------- /lightrag/api/openai_lightrag_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/api/openai_lightrag_server.py -------------------------------------------------------------------------------- /lightrag/api/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/api/requirements.txt -------------------------------------------------------------------------------- /lightrag/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/base.py -------------------------------------------------------------------------------- /lightrag/kg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/__init__.py -------------------------------------------------------------------------------- /lightrag/kg/age_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/age_impl.py -------------------------------------------------------------------------------- /lightrag/kg/chroma_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/chroma_impl.py -------------------------------------------------------------------------------- /lightrag/kg/gremlin_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/gremlin_impl.py -------------------------------------------------------------------------------- /lightrag/kg/milvus_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/milvus_impl.py -------------------------------------------------------------------------------- /lightrag/kg/mongo_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/mongo_impl.py -------------------------------------------------------------------------------- /lightrag/kg/neo4j_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/neo4j_impl.py -------------------------------------------------------------------------------- /lightrag/kg/oracle_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/oracle_impl.py -------------------------------------------------------------------------------- /lightrag/kg/postgres_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/postgres_impl.py -------------------------------------------------------------------------------- /lightrag/kg/postgres_impl_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/postgres_impl_test.py -------------------------------------------------------------------------------- /lightrag/kg/tidb_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/kg/tidb_impl.py -------------------------------------------------------------------------------- /lightrag/lightrag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/lightrag.py -------------------------------------------------------------------------------- /lightrag/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/llm.py -------------------------------------------------------------------------------- /lightrag/operate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/operate.py -------------------------------------------------------------------------------- /lightrag/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/prompt.py -------------------------------------------------------------------------------- /lightrag/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/storage.py -------------------------------------------------------------------------------- /lightrag/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/lightrag/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/server.py -------------------------------------------------------------------------------- /test/book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/test/book.txt -------------------------------------------------------------------------------- /test/book_zh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZB052-A/LightRAG-Deepseek-Test/HEAD/test/book_zh.txt --------------------------------------------------------------------------------