Spaces:
Running
Running
File size: 7,824 Bytes
3193174 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 | """
Unified event types for callback system.
All events inherit from BaseEvent and provide structured data
for callback handlers to process.
"""
from datetime import datetime
from enum import Enum
from typing import Any
from uuid import UUID
from pydantic import BaseModel, ConfigDict, Field
__all__ = [
"AgentEndEvent",
"AgentErrorEvent",
"AgentRetryEvent",
"AgentStartEvent",
"BaseEvent",
"BudgetExceededEvent",
"BudgetWarningEvent",
"EventType",
"FallbackEvent",
"MemoryReadEvent",
"MemoryWriteEvent",
"ParallelEndEvent",
"ParallelStartEvent",
"PlanCreatedEvent",
"PruneEvent",
"RunEndEvent",
"RunStartEvent",
"TokenEvent",
"ToolEndEvent",
"ToolErrorEvent",
"ToolStartEvent",
"TopologyChangedEvent",
]
class EventType(str, Enum):
"""Types of callback events."""
# Run lifecycle
RUN_START = "run_start"
RUN_END = "run_end"
# Agent lifecycle
AGENT_START = "agent_start"
AGENT_END = "agent_end"
AGENT_ERROR = "agent_error"
AGENT_RETRY = "agent_retry"
# Token streaming
TOKEN = "token" # noqa: S105
# Planning
PLAN_CREATED = "plan_created"
TOPOLOGY_CHANGED = "topology_changed"
# Adaptive execution
PRUNE = "prune"
FALLBACK = "fallback"
# Parallel execution
PARALLEL_START = "parallel_start"
PARALLEL_END = "parallel_end"
# Memory
MEMORY_READ = "memory_read"
MEMORY_WRITE = "memory_write"
# Budget
BUDGET_WARNING = "budget_warning"
BUDGET_EXCEEDED = "budget_exceeded"
# Tools
TOOL_START = "tool_start"
TOOL_END = "tool_end"
TOOL_ERROR = "tool_error"
class BaseEvent(BaseModel):
"""Base event with common fields."""
model_config = ConfigDict(arbitrary_types_allowed=True)
event_type: EventType
run_id: UUID
parent_run_id: UUID | None = None
timestamp: datetime = Field(default_factory=datetime.now)
tags: list[str] = Field(default_factory=list)
metadata: dict[str, Any] = Field(default_factory=dict)
def to_dict(self) -> dict[str, Any]:
return {
"event_type": self.event_type.value,
"run_id": str(self.run_id),
"parent_run_id": str(self.parent_run_id) if self.parent_run_id else None,
"timestamp": self.timestamp.isoformat(),
"tags": self.tags,
"metadata": self.metadata,
}
class RunStartEvent(BaseEvent):
"""Emitted when execution run starts."""
event_type: EventType = EventType.RUN_START
query: str = ""
num_agents: int = 0
execution_order: list[str] = Field(default_factory=list)
config: dict[str, Any] = Field(default_factory=dict)
class RunEndEvent(BaseEvent):
"""Emitted when execution run ends."""
event_type: EventType = EventType.RUN_END
output: str = ""
success: bool = True
error: str | None = None
total_tokens: int = 0
total_time_ms: float = 0.0
executed_agents: list[str] = Field(default_factory=list)
class AgentStartEvent(BaseEvent):
"""Emitted when an agent starts processing."""
event_type: EventType = EventType.AGENT_START
agent_id: str = ""
agent_name: str = ""
step_index: int = 0
prompt: str = ""
predecessors: list[str] = Field(default_factory=list)
class AgentEndEvent(BaseEvent):
"""Emitted when an agent completes processing."""
event_type: EventType = EventType.AGENT_END
agent_id: str = ""
agent_name: str = ""
step_index: int = 0
output: str = ""
tokens_used: int = 0
duration_ms: float = 0.0
is_final: bool = False
class AgentErrorEvent(BaseEvent):
"""Emitted when an agent encounters an error."""
event_type: EventType = EventType.AGENT_ERROR
agent_id: str = ""
error_type: str = ""
error_message: str = ""
will_retry: bool = False
attempt: int = 0
max_attempts: int = 0
class AgentRetryEvent(BaseEvent):
"""Emitted when an agent is being retried."""
event_type: EventType = EventType.AGENT_RETRY
agent_id: str = ""
attempt: int = 0
max_attempts: int = 0
delay_ms: float = 0.0
error: str = ""
class TokenEvent(BaseEvent):
"""Emitted for each token during streaming LLM output."""
event_type: EventType = EventType.TOKEN
agent_id: str = ""
token: str = ""
token_index: int = 0
is_first: bool = False
is_last: bool = False
class PlanCreatedEvent(BaseEvent):
"""Emitted when execution plan is created."""
event_type: EventType = EventType.PLAN_CREATED
num_steps: int = 0
execution_order: list[str] = Field(default_factory=list)
class TopologyChangedEvent(BaseEvent):
"""Emitted when execution plan is modified by topology hooks."""
event_type: EventType = EventType.TOPOLOGY_CHANGED
reason: str = ""
old_remaining: list[str] = Field(default_factory=list)
new_remaining: list[str] = Field(default_factory=list)
change_count: int = 0
class PruneEvent(BaseEvent):
"""Emitted when an agent is pruned from execution."""
event_type: EventType = EventType.PRUNE
agent_id: str = ""
reason: str = ""
class FallbackEvent(BaseEvent):
"""Emitted when fallback agent is activated."""
event_type: EventType = EventType.FALLBACK
failed_agent_id: str = ""
fallback_agent_id: str = ""
reason: str = ""
class ParallelStartEvent(BaseEvent):
"""Emitted when parallel execution group starts."""
event_type: EventType = EventType.PARALLEL_START
agent_ids: list[str] = Field(default_factory=list)
group_index: int = 0
class ParallelEndEvent(BaseEvent):
"""Emitted when parallel execution group completes."""
event_type: EventType = EventType.PARALLEL_END
agent_ids: list[str] = Field(default_factory=list)
group_index: int = 0
successful: list[str] = Field(default_factory=list)
failed: list[str] = Field(default_factory=list)
class MemoryReadEvent(BaseEvent):
"""Emitted when agent reads from memory."""
event_type: EventType = EventType.MEMORY_READ
agent_id: str = ""
entries_count: int = 0
keys: list[str] = Field(default_factory=list)
class MemoryWriteEvent(BaseEvent):
"""Emitted when agent writes to memory."""
event_type: EventType = EventType.MEMORY_WRITE
agent_id: str = ""
key: str = ""
value_size: int = 0
class BudgetWarningEvent(BaseEvent):
"""Emitted when budget threshold is approached."""
event_type: EventType = EventType.BUDGET_WARNING
budget_type: str = ""
current: float = 0.0
limit: float = 0.0
ratio: float = 0.0
class BudgetExceededEvent(BaseEvent):
"""Emitted when budget is exceeded."""
event_type: EventType = EventType.BUDGET_EXCEEDED
budget_type: str = ""
current: float = 0.0
limit: float = 0.0
action_taken: str = ""
# === Tool events ===
class ToolStartEvent(BaseEvent):
"""Emitted when a tool starts execution."""
event_type: EventType = EventType.TOOL_START
agent_id: str = ""
tool_name: str = ""
action: str = "" # "search", "fetch", "click", "fill", "extract_links", "execute_js", "crawl"
arguments: dict[str, Any] = Field(default_factory=dict)
class ToolEndEvent(BaseEvent):
"""Emitted when a tool completes execution."""
event_type: EventType = EventType.TOOL_END
agent_id: str = ""
tool_name: str = ""
action: str = ""
success: bool = True
output_size: int = 0
duration_ms: float = 0.0
result_summary: str = "" # Brief result description
class ToolErrorEvent(BaseEvent):
"""Emitted when a tool encounters an error."""
event_type: EventType = EventType.TOOL_ERROR
agent_id: str = ""
tool_name: str = ""
action: str = ""
error_type: str = ""
error_message: str = ""
|