Module Values.GetIngestionJobRequestSource

Gets information about a data ingestion job. Data sources are ingested into your knowledge base so that Large Language Models (LLMs) can use your data.

Sourcetype nonrec t = {
  1. knowledgeBaseId : Id.t;
    (*

    The unique identifier of the knowledge base for the data ingestion job you want to get information on.

    *)
  2. dataSourceId : Id.t;
    (*

    The unique identifier of the data source for the data ingestion job you want to get information on.

    *)
  3. ingestionJobId : Id.t;
    (*

    The unique identifier of the data ingestion job you want to get information on.

    *)
}
Sourceval context_ : string
Sourceval make : knowledgeBaseId:Id.t -> dataSourceId:Id.t -> ingestionJobId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.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