Closed GuityOrange closed 3 months ago
facing the same issue!
Duplicate of #813. We're investigating.
Facing the same problem...
Poe => python -m graphrag.query --root /workspace/dev/ragtest/ --method local 'who is Mr. Peanut Butter?'
INFO: Reading settings from /workspace/dev/ragtest/settings.yaml
INFO: Vector Store Args: {}
Traceback (most recent call last):
File "/usr/local/lib/python3.10/runpy.py", line 196, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/usr/local/lib/python3.10/runpy.py", line 86, in _run_code
exec(code, run_globals)
File "/workspace/graphrag/graphrag/query/main.py", line 83, in
Same issue
Same issue
Same issue
In first time run local search, must let "config_args.get("overwrite", False) = True", and dump embeddings from the entities list to the description_embedding_store. That is ok for me.
In first time run local search, must let "config_args.get("overwrite", False) = True", and dump embeddings from the entities list to the description_embedding_store. That is ok for me.
Hello @zijinyuan ,
I am new to using graphrag. Could you please clarify where to set config_args.get("overwrite", False) = True
and description_embedding_store
?
Thanks in advance.
In first time run local search, must let "config_args.get("overwrite", False) = True", and dump embeddings from the entities list to the description_embedding_store. That is ok for me.
Hello @zijinyuan , I am new to using graphrag. Could you please clarify where to set
config_args.get("overwrite", False) = True
anddescription_embedding_store
? Thanks in advance.open file:query/cli.py,and then find code line:if config_args.get("overwrite", False). when u firstly use "local_search",u should change "if config_args.get("overwrite", False)" to be "if True",and after that ,change it back.it will be ok.
yes, [XiaoTongDeng] is right,
In first time run local search, must let "config_args.get("overwrite", False) = True", and dump embeddings from the entities list to the description_embedding_store. That is ok for me.
Hello @zijinyuan , I am new to using graphrag. Could you please clarify where to set
config_args.get("overwrite", False) = True
anddescription_embedding_store
? Thanks in advance.open file:query/cli.py,and then find code line:if config_args.get("overwrite", False). when u firstly use "local_search",u should change "if config_args.get("overwrite", False)" to be "if True",and after that ,change it back.it will be ok.
yes, [XiaoTongDeng] is right,
How to set this parameter when running through the "python -m graphrag.query" command line? Thanks
Do you need to file an issue?
Describe the bug
I've been using GraphRAG for two weeks now, and I updated to the latest branch in order to solve the issue that LLMs returns faulty responses on non JSON mode. However, I'm unable to local query correctly now. Considering the impact of past operations, I even cloned a new copy of the code and started building from scratch, but I still encountered the same issue.
poetry run poe index
and global query works fine, but I get an error when running local query. The error :Steps to reproduce
No response
Expected Behavior
No response
GraphRAG Config Used
Additional Information
thanks for help