English
.vscode/launch.json
{ "configurations": [ { "name": "UltraRAG Debug", "type": "debugpy", "request": "launch", "program": "${workspaceFolder}/src/ultrarag_mcp/client.py", "console": "integratedTerminal", "args": [ "run", "${workspaceFolder}/examples/xxx.yaml" # Replace with your Pipeline configuration file path ], "cwd": "${workspaceFolder}", } ] }
Was this page helpful?