Files
ds_drone_bot/api/models/responses.py
T

10 lines
220 B
Python
Raw Normal View History

2025-07-24 14:27:56 +01:00
# api/models/responses.py
from pydantic import BaseModel
from typing import Dict
2025-07-24 14:27:56 +01:00
class ChatResponse(BaseModel):
status: str
2025-08-11 23:16:48 +01:00
message: Dict
2025-07-24 14:27:56 +01:00
class SurveyAgentResponse(BaseModel):
status: str
result: Dict