mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-04-25 11:18:22 +00:00
* Add TypeScript SDK path to code-workspace settings Agent-Logs-Url: https://github.com/foreleven/deer-flow/sessions/7d99db18-eb9d-4798-b0a5-b33f6079cd1a Co-authored-by: foreleven <4785594+foreleven@users.noreply.github.com> * Update deer-flow.code-workspace Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: foreleven <4785594+foreleven@users.noreply.github.com> Co-authored-by: Willem Jiang <willem.jiang@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"path": "."
|
|
}
|
|
],
|
|
"settings": {
|
|
"typescript.tsdk": "frontend/node_modules/typescript/lib",
|
|
"python-envs.pythonProjects": [
|
|
{
|
|
"path": "backend",
|
|
"envManager": "ms-python.python:venv",
|
|
"packageManager": "ms-python.python:pip",
|
|
"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
|
|
}
|
|
]
|
|
}
|
|
}
|