This commit is contained in:
gqt
2026-07-13 16:58:27 +08:00
parent 01b5a29b62
commit 49e8d5da2a
5 changed files with 6 additions and 5 deletions
-1
View File
@@ -1 +0,0 @@
*.pdf binary
+2
View File
@@ -28,3 +28,5 @@ coverage/
.DS_Store
.idea/
.vscode/
*.txt
+1 -1
View File
@@ -76,7 +76,7 @@ def create_research_tool(research_agent):
request_id=runtime.context.request_id,
),
config={
"recursion_limit": 12,
"recursion_limit": 24,
"tags": ["research-agent"],
"metadata": {"request_id": runtime.context.request_id},
},
+1 -1
View File
@@ -92,7 +92,7 @@ class ChatService:
assistant_message_id=assistant_id,
),
config={
"recursion_limit": 12,
"recursion_limit": 24,
"tags": ["main-agent"],
"metadata": {
"request_id": request_id,
+2 -2
View File
@@ -7,8 +7,8 @@ export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
proxy: {
'/api': 'http://127.0.0.1:8000',
'/health': 'http://127.0.0.1:8000',
'/api': 'http://127.0.0.1:8003',
'/health': 'http://127.0.0.1:8003',
},
},
})