feat: test script of new agent

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-12-18 23:57:57 -08:00
parent e48aa3f1c7
commit c6cc7c2a6a
14 changed files with 5079 additions and 2923 deletions

13
.vscode/launch.json vendored
View file

@ -32,6 +32,19 @@
"console": "integratedTerminal",
"justMyCode": false,
"cwd": "${workspaceFolder}/surfsense_backend"
},
{
"name": "Python Debugger: Chat DeepAgent",
"type": "debugpy",
"request": "launch",
"module": "app.agents.new_chat.chat_deepagent",
"console": "integratedTerminal",
"justMyCode": false,
"cwd": "${workspaceFolder}/surfsense_backend",
"python": "${command:python.interpreterPath}",
"env": {
"PYTHONPATH": "${workspaceFolder}/surfsense_backend"
}
}
]
}