Module Values.SpanToolUseValueSource

Tool invocation message content

Sourcetype nonrec t = {
  1. toolUseId : Uuid.t option;
    (*

    Unique ID for this tool invocation

    *)
  2. name : Name.t option;
    (*

    The tool name

    *)
  3. arguments : JSONDocument.t option;
    (*

    The tool input arguments

    *)
}
Sourceval make : ?toolUseId:??? -> ?name:??? -> ?arguments:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Uuid.t | `Structure of 'a list ]) 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