mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-04-25 11:18:22 +00:00
- Added titles and descriptions to workspace usage, configuration, customization, design principles, installation, integration guide, lead agent, MCP integration, memory system, middleware, quick start, sandbox, skills, subagents, and tools documentation. - Removed outdated API/Gateway reference and concepts glossary pages. - Updated configuration reference to reflect current structure and removed unnecessary sections. - Introduced new model provider documentation for Ark and updated the index page for model providers. - Enhanced tutorials with titles and descriptions for better clarity and navigation.
47 lines
1.1 KiB
Plaintext
47 lines
1.1 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"path": "."
|
|
}
|
|
],
|
|
"settings": {
|
|
"js/ts.tsdk.path": "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
|
|
}
|
|
]
|
|
}
|
|
} |