├── .gitignore ├── README.md ├── appUI.py ├── chainlit.md ├── images ├── 1721017707759.jpg ├── U2.webp ├── UI1.webp └── flowchart.webp ├── requirements.txt └── utils ├── chainlit_agents.py ├── embedding.py ├── openai_embeddings_llm.py ├── pdf_to_markdown.py └── settings.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/README.md -------------------------------------------------------------------------------- /appUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/appUI.py -------------------------------------------------------------------------------- /chainlit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/chainlit.md -------------------------------------------------------------------------------- /images/1721017707759.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/images/1721017707759.jpg -------------------------------------------------------------------------------- /images/U2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/images/U2.webp -------------------------------------------------------------------------------- /images/UI1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/images/UI1.webp -------------------------------------------------------------------------------- /images/flowchart.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/images/flowchart.webp -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/chainlit_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/utils/chainlit_agents.py -------------------------------------------------------------------------------- /utils/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/utils/embedding.py -------------------------------------------------------------------------------- /utils/openai_embeddings_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/utils/openai_embeddings_llm.py -------------------------------------------------------------------------------- /utils/pdf_to_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/utils/pdf_to_markdown.py -------------------------------------------------------------------------------- /utils/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karthik-codex/Autogen_GraphRAG_Ollama/HEAD/utils/settings.yaml --------------------------------------------------------------------------------