├── .github └── workflows │ └── self-improve.yml ├── .gitignore ├── CLAUDE.md ├── README.md ├── favicon.ico ├── main.py ├── mda_cognee_dspy.py ├── next.config.js ├── package.json ├── pages ├── _meta.json ├── index.mdx ├── optimization-techniques.mdx ├── optimization-techniques │ ├── _meta.json │ └── bootstrapped-few-shot-learning.mdx ├── query-processing.mdx ├── query-processing │ ├── _meta.json │ ├── master-agent.mdx │ ├── query-planner.mdx │ └── reranking-module.mdx ├── system-architecture.mdx └── system-architecture │ ├── _meta.json │ ├── document-agents.mdx │ ├── qdrant-vector-database.mdx │ └── vector-embeddings.mdx ├── requirements.txt ├── start.js └── theme.config.js /.github/workflows/self-improve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/.github/workflows/self-improve.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/.gitignore -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/favicon.ico -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/main.py -------------------------------------------------------------------------------- /mda_cognee_dspy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/mda_cognee_dspy.py -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/package.json -------------------------------------------------------------------------------- /pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/_meta.json -------------------------------------------------------------------------------- /pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/index.mdx -------------------------------------------------------------------------------- /pages/optimization-techniques.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/optimization-techniques.mdx -------------------------------------------------------------------------------- /pages/optimization-techniques/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/optimization-techniques/_meta.json -------------------------------------------------------------------------------- /pages/optimization-techniques/bootstrapped-few-shot-learning.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/optimization-techniques/bootstrapped-few-shot-learning.mdx -------------------------------------------------------------------------------- /pages/query-processing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/query-processing.mdx -------------------------------------------------------------------------------- /pages/query-processing/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/query-processing/_meta.json -------------------------------------------------------------------------------- /pages/query-processing/master-agent.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/query-processing/master-agent.mdx -------------------------------------------------------------------------------- /pages/query-processing/query-planner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/query-processing/query-planner.mdx -------------------------------------------------------------------------------- /pages/query-processing/reranking-module.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/query-processing/reranking-module.mdx -------------------------------------------------------------------------------- /pages/system-architecture.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/system-architecture.mdx -------------------------------------------------------------------------------- /pages/system-architecture/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/system-architecture/_meta.json -------------------------------------------------------------------------------- /pages/system-architecture/document-agents.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/system-architecture/document-agents.mdx -------------------------------------------------------------------------------- /pages/system-architecture/qdrant-vector-database.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/system-architecture/qdrant-vector-database.mdx -------------------------------------------------------------------------------- /pages/system-architecture/vector-embeddings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/pages/system-architecture/vector-embeddings.mdx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/requirements.txt -------------------------------------------------------------------------------- /start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/start.js -------------------------------------------------------------------------------- /theme.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmanhype/DSPy-Multi-Document-Agents/HEAD/theme.config.js --------------------------------------------------------------------------------