Nathan Evans

Results 142 comments of Nathan Evans

GraphRAG allows registration of custom storage implementations (See StorageFactory). We are limiting how many we officially support in order to keep maintenance manageable.

Is there a particular reason you need to remove the old txt files from your input folder? The cache is invoked when the system encounters content that would produce an...

Streamlit re-runs the script every time anything on the page changes, so your code may be getting executed too often. We generally use a "loaded" st.session_state variable to do run-once...

The [GlobalSearch](https://microsoft.github.io/graphrag/posts/query/0-global_search/) and [LocalSearch](https://microsoft.github.io/graphrag/posts/query/1-local_search/) classes do accept prompts, so if you are building a search implementation you can supply edited prompts. We don't expose that through the CLI or config...

This has been around for awhile, but worth noting: newer versions of GraphRAG export all prompts when you do `graphrag init`. So you can edit the text files directly.

You can comment out the community reports to get unblocked, but we do expect them for local search results. Some things to check: - Does the notebook run fine with...

> You can comment out the community reports to get unblocked, but we do expect them for local search results. Some things to check: > > * Does the notebook...

Have you gone through the [getting started](https://microsoft.github.io/graphrag/posts/get_started/) example with success? If it was not, did you see any errors in your indexing-engine.log, which might indicate that the query doesn't have...

I don't have any great suggestions for you at the moment. Global search _is_ time consuming, because it summarizes every community to find the best answers to your question. You...

> I have the same problem. > > Is it possible to use some filters on the communities before the map stage? For example, only the communities sharing same entities...