mirror of
https://github.com/ijaric/voice_assistant.git
synced 2025-12-14 19:16:16 +00:00
feat: [#45] llm_agent
This commit is contained in:
13
src/assistant/lib/models/agent.py
Normal file
13
src/assistant/lib/models/agent.py
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
import uuid
|
||||||
|
|
||||||
|
import pydantic
|
||||||
|
|
||||||
|
|
||||||
|
class AgentCreateRequestModel(pydantic.BaseModel):
|
||||||
|
text: str
|
||||||
|
user_id: str
|
||||||
|
channel: str
|
||||||
|
|
||||||
|
|
||||||
|
class AgentCreateResponseModel(pydantic.BaseModel):
|
||||||
|
text: str
|
||||||
Reference in New Issue
Block a user