Module Values.InvokeActStepRequestSource

Executes the next step of an act, processing tool call results and returning new tool calls if needed.

Sourcetype nonrec t = {
  1. workflowDefinitionName : WorkflowDefinitionName.t;
    (*

    The name of the workflow definition containing the act.

    *)
  2. workflowRunId : UuidString.t;
    (*

    The unique identifier of the workflow run containing the act.

    *)
  3. sessionId : UuidString.t;
    (*

    The unique identifier of the session containing the act.

    *)
  4. actId : UuidString.t;
    (*

    The unique identifier of the act to invoke the next step for.

    *)
  5. callResults : CallResults.t;
    (*

    The results from previous tool calls that the act requested.

    *)
  6. previousStepId : UuidString.t option;
    (*

    The identifier of the previous step, used for tracking execution flow.

    *)
}
Sourceval context_ : string
Sourceval make : ?previousStepId:??? -> workflowDefinitionName:WorkflowDefinitionName.t -> workflowRunId:UuidString.t -> sessionId:UuidString.t -> actId:UuidString.t -> callResults:CallResults.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of CallId.t ]) list ] list | `String of WorkflowDefinitionName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t