Rag_basic/.vscode/launch.json

17 lines
552 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug ingest_semantic (as module)",
"type": "python",
"request": "launch",
"module": "src.ingest.ingest_semantic", // chạy theo module
"cwd": "${workspaceFolder}", // thư mục gốc project
"envFile": "${workspaceFolder}/.env", // load biến môi trường
"env": { "PYTHONPATH": "${workspaceFolder}" }, // đảm bảo 'src' là package gốc
"console": "integratedTerminal",
"justMyCode": true
}
]
}