feat: support function factory (#4)

This commit is contained in:
DanielWalnut
2026-01-15 22:05:54 +08:00
committed by GitHub
parent 3b879e277e
commit c7d68c6d3f
9 changed files with 133 additions and 22 deletions

View File

@@ -13,5 +13,34 @@
"workspace": "deer-flow"
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Debug Lead Agent",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/backend/debug.py",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/backend",
"env": {
"PYTHONPATH": "${workspaceFolder}/backend"
},
"justMyCode": false
},
{
"name": "Debug Lead Agent (justMyCode)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/backend/debug.py",
"console": "integratedTerminal",
"cwd": "${workspaceFolder}/backend",
"env": {
"PYTHONPATH": "${workspaceFolder}/backend"
},
"justMyCode": true
}
]
}
}