Files
ds_drone_bot/api/models/responses.py
T
2025-08-01 19:33:30 +01:00

12 lines
221 B
Python

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