给 Agentic Loop 用的精简事件。 对应源码: conversation.rs:23-32
| 378 | |
| 379 | @dataclass |
| 380 | class AssistantEvent: |
| 381 | """ |
| 382 | 给 Agentic Loop 用的精简事件。 |
| 383 | |
| 384 | 对应源码: conversation.rs:23-32 |
| 385 | """ |
| 386 | event_type: AssistantEventType |
| 387 | text: str = "" # TEXT_DELTA 时用 |
| 388 | tool_id: str = "" # TOOL_USE 时用 |
| 389 | tool_name: str = "" # TOOL_USE 时用 |
| 390 | tool_input: str = "" # TOOL_USE 时用 |
| 391 | input_tokens: int = 0 # USAGE 时用 |
| 392 | output_tokens: int = 0 # USAGE 时用 |
| 393 | |
| 394 | |
| 395 | @dataclass |
no outgoing calls
no test coverage detected