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