Values.ExecutionSourceRepresents an execution instance with its lifecycle information
type nonrec t = {agentSpaceId : String_.t option;The unique identifier for the agent space containing this execution
*)executionId : String_.t option;The unique identifier for this execution
*)parentExecutionId : String_.t option;The identifier of the parent execution, if this is a child execution
*)agentSubTask : String_.t option;The specific subtask being executed by the agent
*)createdAt : JournalTimestamp.t option;Timestamp when this execution was created
*)updatedAt : JournalTimestamp.t option;Timestamp when this execution was last updated
*)executionStatus : ExecutionStatus.t option;The current status of this execution
*)agentType : String_.t option;The type of agent that performed this execution.
*)uid : String_.t option;The unique identifier for the user session associated with this execution
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of String_.t
| `Timestamp of JournalTimestamp.t ])
list ]