Values.AIPromptDataSourceThe data for the AI Prompt
type nonrec t = {assistantId : Uuid.t option;The identifier of the Amazon Q in Connect assistant. Can be either the ID or the ARN. URLs cannot contain the ARN.
*)assistantArn : Arn.t option;The Amazon Resource Name (ARN) of the Amazon Q in Connect assistant.
*)aiPromptId : Uuid.t option;The identifier of the Amazon Q in Connect AI prompt.
*)aiPromptArn : Arn.t option;The Amazon Resource Name (ARN) of the AI Prompt.
*)name : Name.t option;The name of the AI Prompt
*)type_ : AIPromptType.t option;The type of this AI Prompt.
*)templateType : AIPromptTemplateType.t option;The type of the prompt template for this AI Prompt.
*)modelId : AIPromptModelIdentifier.t option;The identifier of the model used for this AI Prompt. The following model Ids are supported: anthropic.claude-3-haiku--v1:0 apac.amazon.nova-lite-v1:0 apac.amazon.nova-micro-v1:0 apac.amazon.nova-pro-v1:0 apac.anthropic.claude-3-5-sonnet--v2:0 apac.anthropic.claude-3-haiku-20240307-v1:0 eu.amazon.nova-lite-v1:0 eu.amazon.nova-micro-v1:0 eu.amazon.nova-pro-v1:0 eu.anthropic.claude-3-7-sonnet-20250219-v1:0 eu.anthropic.claude-3-haiku-20240307-v1:0 us.amazon.nova-lite-v1:0 us.amazon.nova-micro-v1:0 us.amazon.nova-pro-v1:0 us.anthropic.claude-3-5-haiku-20241022-v1:0 us.anthropic.claude-3-7-sonnet-20250219-v1:0 us.anthropic.claude-3-haiku-20240307-v1:0
*)apiFormat : AIPromptAPIFormat.t option;The API format used for this AI Prompt.
*)templateConfiguration : AIPromptTemplateConfiguration.t option;The configuration of the prompt template for this AI Prompt.
*)inferenceConfiguration : AIPromptInferenceConfiguration.t option;The configuration for inference parameters when using the AI Prompt.
*)modifiedTime : Timestamp.t option;The time the AI Prompt was last modified.
*)description : Description.t option;The description of the AI Prompt.
*)visibilityStatus : VisibilityStatus.t option;The visibility status of the AI Prompt.
*)origin : Origin.t option;The origin of the AI Prompt. SYSTEM for a default AI Prompt created by Q in Connect or CUSTOMER for an AI Prompt created by calling AI Prompt creation APIs.
*)status : Status.t option;The status of the AI Prompt.
*)}val make :
?assistantId:??? ->
?assistantArn:??? ->
?aiPromptId:??? ->
?aiPromptArn:??? ->
?name:??? ->
?type_:??? ->
?templateType:??? ->
?modelId:??? ->
?apiFormat:??? ->
?templateConfiguration:??? ->
?inferenceConfiguration:??? ->
?modifiedTime:??? ->
?description:??? ->
?visibilityStatus:??? ->
?tags:??? ->
?origin:??? ->
?status:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of Uuid.t
| `Structure of
(string
* [> `Float of Probability.t
| `Integer of TopK.t
| `Structure of (string * [> `String of TextAIPrompt.t ]) list ])
list
| `Timestamp of Timestamp.t ])
list ]