# 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