| 8 | from src.dynamic import dynamic_manager |
| 9 | |
| 10 | class EventType(Enum): |
| 11 | |
| 12 | # Agent Event Types |
| 13 | TASK_START = "task_start" |
| 14 | TOOL_STEP = "tool_step" |
| 15 | TASK_END = "task_end" |
| 16 | |
| 17 | # Optimizer Event Types |
| 18 | OPTIMIZATION_STEP = "optimization_step" |
| 19 | |
| 20 | class ChatEvent(BaseModel): |
| 21 | id: str = Field(..., description="The unique identifier for the event.") |
no outgoing calls
no test coverage detected