12 lines
221 B
Python
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 |