feat: Added Q/A Mode in Research Agent

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-06-03 00:10:35 -07:00
parent 4820caf901
commit 0c07898f4a
18 changed files with 792 additions and 42 deletions

37
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,37 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: UV Run with Reload",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"app.app:app",
"--reload",
"--host",
"0.0.0.0",
"--log-level",
"info",
"--reload-dir",
"app"
],
"console": "integratedTerminal",
"justMyCode": false,
"cwd": "${workspaceFolder}/surfsense_backend",
"python": "${workspaceFolder}/surfsense_backend/.venv/Scripts/python.exe"
},
{
"name": "Python Debugger: main.py (direct)",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/surfsense_backend/main.py",
"console": "integratedTerminal",
"justMyCode": false,
"cwd": "${workspaceFolder}/surfsense_backend"
}
]
}