Files
chief-agent/model.py

11 lines
209 B
Python

from pydantic import BaseModel
class ChatRequest(BaseModel):
username: str
message: str
thread_id: str
class SessionMessageResponse(BaseModel):
username: str
title: str
thread_id: str