ExecutedAction#
- class nemo_microservices.types.ExecutedAction(*args: Any, **kwargs: Any)
Bases:
BaseModel- action_name: str
The name of the action that was executed.
- action_params: object | None = None
The parameters for the action.
- duration: float | None = None
How long the action took to execute, in seconds.
- finished_at: float | None = None
Timestamp for when the action finished.
- llm_calls: List[LlmCallInfo] | None = None
Information about the LLM calls made by the action.
- return_value: object | None = None
The value returned by the action.
- started_at: float | None = None
Timestamp for when the action started.