Files
ds_drone_bot/api/models/responses.py
T

12 lines
221 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
message: str
class SurveyAgentResponse(BaseModel):
status: str
result: Dict