A container for events that occur during the course of an invocation.
| 69 | |
| 70 | |
| 71 | class InvocationEvents(EvalBaseModel): |
| 72 | """A container for events that occur during the course of an invocation.""" |
| 73 | |
| 74 | invocation_events: list[InvocationEvent] = Field(default_factory=list) |
| 75 | """A list of invocation events.""" |
| 76 | |
| 77 | |
| 78 | IntermediateDataType: TypeAlias = Union[IntermediateData, InvocationEvents] |
no outgoing calls