Module Values.AgentKnowledgeBaseSource

Contains details about a knowledge base that is associated with an agent.

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

    The unique identifier of the agent with which the knowledge base is associated.

    *)
  2. agentVersion : Version.t option;
    (*

    The version of the agent with which the knowledge base is associated.

    *)
  3. knowledgeBaseId : Id.t option;
    (*

    The unique identifier of the association between the agent and the knowledge base.

    *)
  4. description : Description.t option;
    (*

    The description of the association between the agent and the knowledge base.

    *)
  5. createdAt : DateTimestamp.t option;
    (*

    The time at which the association between the agent and the knowledge base was created.

    *)
  6. updatedAt : DateTimestamp.t option;
    (*

    The time at which the association between the agent and the knowledge base was last updated.

    *)
  7. knowledgeBaseState : KnowledgeBaseState.t option;
    (*

    Specifies whether to use the knowledge base or not when sending an InvokeAgent request.

    *)
}
Sourceval make : ?agentId:??? -> ?agentVersion:??? -> ?knowledgeBaseId:??? -> ?description:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?knowledgeBaseState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.t | `Timestamp of DateTimestamp.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