8 lines
126 B
Python
8 lines
126 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class CreateConversationResponse(BaseModel):
|
|
id: str
|
|
started_at: str
|
|
status: str
|