graphrag
graphrag copied to clipboard
A modular graph-based Retrieval-Augmented Generation (RAG) system
### Do you need to file an issue? - [X] I have searched the existing issues and this feature is not already filed. - [ ] My model is hosted...
Update the lines 71 and 72 before: entity_df["community"] = entity_df["community"].fillna(-1) entity_df["community"] = entity_df["community"].astype(int) after: entity_df.loc[:, "community"] = entity_df["community"].fillna(-1) entity_df.loc[:, "community"] = entity_df["community"].astype(int) ## Description [Provide a brief description of the...
### Is there an existing issue for this? - [X] I have searched the existing issues - [X] I have checked [#657](https://github.com/microsoft/graphrag/issues/657) to validate if my issue is covered by...
## Description paramater -> parameter ## Proposed Changes [List the specific changes made in this pull request.] ## Checklist - [ ] I have tested these changes locally. - [...
### Do you need to file an issue? - [X] I have searched the existing issues and this bug is not already filed. - [X] My model is hosted on...
### Do you need to file an issue? - [X] I have searched the existing issues and this feature is not already filed. - [ ] My model is hosted...
## Description Changed the version number from 0.1.0 to 0.1.1 in the CHANGELOG.md First release version was 0.1.1 https://github.com/microsoft/graphrag/releases/tag/v0.1.1 ## Related Issues ## Proposed Changes ## Checklist - [x] I...
### Do you need to file an issue? - [X] I have searched the existing issues and this bug is not already filed. - [ ] My model is hosted...
…ch API Placeholder ## Description [Provide a brief description of the changes made in this pull request.] ## Related Issues [Reference any related issues or tasks that this pull request...
1. Fixed Import Issues: - Resolved the "Import 'pandas' could not be resolved from source" error by adding the necessary import statements and ensuring that all required modules are properly...