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