nemo_microservices.types.executed_action#

Module Contents#

Classes#

API#

class nemo_microservices.types.executed_action.ExecutedAction(/, **data: Any)#

Bases: nemo_microservices._models.BaseModel

action_name: str#

None

The name of the action that was executed.

action_params: Dict[str, 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[nemo_microservices.types.llm_call_info.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.