Module Values.ChatExecutionSource

A single chat execution summary

Sourcetype nonrec t = {
  1. executionId : ResourceId.t option;
    (*

    The unique identifier for the execution

    *)
  2. createdAt : Timestamp.t option;
    (*

    Timestamp when the chat was created

    *)
  3. updatedAt : Timestamp.t option;
    (*

    Timestamp when the chat was last updated

    *)
  4. summary : String_.t option;
    (*

    Summary or title of the chat

    *)
}
Sourceval make : ?executionId:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?summary:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceId.t | `Timestamp of Timestamp.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