init
This commit is contained in:
16
assistant_bot/models.py
Normal file
16
assistant_bot/models.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from dataclasses import dataclass
|
||||
from datetime import datetime
|
||||
from typing import Any
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class ReminderParseResult:
|
||||
remind_at_utc: datetime
|
||||
text: str
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class AgentDecision:
|
||||
final: str | None
|
||||
tool_calls: list[dict[str, Any]]
|
||||
reset_context: bool = False
|
||||
Reference in New Issue
Block a user