io.github.cdklabs.generative_ai_cdk_constructs.bedrock.PromptState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of generative-ai-cdk-constructs Show documentation
Show all versions of generative-ai-cdk-constructs Show documentation
AWS Generative AI CDK Constructs is a library for well-architected generative AI patterns.
package io.github.cdklabs.generative_ai_cdk_constructs.bedrock;
/**
* (experimental) Specifies whether to allow the agent to carry out the step specified in the promptType.
*
* If you set this value to DISABLED, the agent skips that step.
* The default state for each promptType is as follows.
*
*
* PRE_PROCESSING – ENABLED
* ORCHESTRATION – ENABLED
* KNOWLEDGE_BASE_RESPONSE_GENERATION – ENABLED
* POST_PROCESSING – DISABLED
*
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-23T22:27:31.979Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Jsii(module = io.github.cdklabs.generative_ai_cdk_constructs.$Module.class, fqn = "@cdklabs/generative-ai-cdk-constructs.bedrock.PromptState")
public enum PromptState {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
ENABLED,
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
DISABLED,
}