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

View file

@ -48,6 +48,14 @@ class AISDKChatRequest(BaseModel):
data: dict[str, Any] | None = None
class NewChatRequest(BaseModel):
"""Request schema for the new deep agent chat endpoint."""
chat_id: int
user_query: str
search_space_id: int
class ChatCreate(ChatBase):
pass