Does anyone think the prompts are vague? #1553
Zhanwei Zhang (IT-Bill)
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Prompt quality is one of the most important factors in GraphRAG. However, it seems that many developers do not give enough consideration to the quality of the prompts. The
local_search_system_promptandglobal_search_system_prompthave remained unchanged since the release of GraphRAG.There are several inaccuracies in the prompts:
Improper delimiter: The
---delimiter is not recommended by OpenAI. Instead, it is suggested to use""". OpenAI Prompt Engineering.Unclear/Inconsistent references:
The lower the tier of the LLM, the higher the demand for prompt accuracy in more difficult tasks; conversely, the higher the tier, the less strict the requirement for prompt accuracy in such tasks. Local search and global search are difficult tasks in GraphRAG, so I think the prompts need to be updated and improved.
All reactions