添加搜索节点

This commit is contained in:
2025-12-23 01:07:30 +08:00
parent 9b283d2f72
commit de45b88225
4 changed files with 84 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"configurations": [
{
"name": "Python Debugger: FastAPI",
"type": "debugpy",
"request": "launch",
"module": "uvicorn",
"args": [
"backend.main:app",
"--reload"
],
"jinja": true
}
]
}