forked from innovacion/Mayacontigo
10 lines
223 B
Python
10 lines
223 B
Python
from uuid import UUID
|
|
|
|
from banortegpt.database.mongo_memory import crud
|
|
|
|
from api.agent import agent
|
|
|
|
|
|
async def create_conversation(user_id: UUID) -> None:
|
|
await crud.create_conversation(user_id, agent.system_prompt)
|