10 lines
220 B
Python
10 lines
220 B
Python
# api/models/responses.py
|
|
from pydantic import BaseModel
|
|
from typing import Dict
|
|
class ChatResponse(BaseModel):
|
|
status: str
|
|
message: Dict
|
|
|
|
class SurveyAgentResponse(BaseModel):
|
|
status: str
|
|
result: Dict |