├── requirements.txt ├── create_final_relationships.parquet └── README.md /requirements.txt: -------------------------------------------------------------------------------- 1 | langchain 2 | langchain_community 3 | langchain_nvidia_ai_endpoints 4 | pandas -------------------------------------------------------------------------------- /create_final_relationships.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ushareng/NvidiaGraphRAG/main/create_final_relationships.parquet -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NvidiaGraphRAG 2 | 3 | ### Welcoome to Graph RAG using Nvidia-Endpoints 4 | We would be leveraging langchain, GraphQAChain for this project. To install the requirements, run 5 | 6 | The data we have used a Medical Documents which has columns like Source, Target and Description stating the relation between them. 7 | ``` 8 | pip install -r requirements.txt 9 | ``` 10 | 11 | You can launch the code using, 12 | ``` 13 | python run nvidia_nim.py 14 | ``` 15 | You can add your questions in the question variable 16 | --------------------------------------------------------------------------------