Files
ds_drone_bot/api/models/responses.py
T
2025-08-11 23:16:48 +01:00

10 lines
220 B
Python

# api/models/responses.py
from pydantic import BaseModel
from typing import Dict
class ChatResponse(BaseModel):
status: str
message: Dict
class SurveyAgentResponse(BaseModel):
status: str
result: Dict