mirror of
https://github.com/microsoft/graphrag.git
synced 2025-06-26 23:19:58 +00:00
39 lines
874 B
JSON
39 lines
874 B
JSON
{
|
|
"_comment": "Use this file to configure the graphrag project for debugging. You may create other configuration profiles based on these or select one below to use.",
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Indexer",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "poetry",
|
|
"args": [
|
|
"poe", "index",
|
|
"--root", "<path_to_ragtest_root_demo>"
|
|
],
|
|
},
|
|
{
|
|
"name": "Query",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "poetry",
|
|
"args": [
|
|
"poe", "query",
|
|
"--root", "<path_to_ragtest_root_demo>",
|
|
"--method", "global",
|
|
"--query", "What are the top themes in this story",
|
|
]
|
|
},
|
|
{
|
|
"name": "Prompt Tuning",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "poetry",
|
|
"args": [
|
|
"poe", "prompt-tune",
|
|
"--config",
|
|
"<path_to_ragtest_root_demo>/settings.yaml",
|
|
]
|
|
}
|
|
]
|
|
} |