Interface PromptMemorySummarizationConfigCustomParser
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,PromptStepConfigBase
- All Known Implementing Classes:
PromptMemorySummarizationConfigCustomParser.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:41:04.519Z")
@Stability(Experimental)
public interface PromptMemorySummarizationConfigCustomParser
extends software.amazon.jsii.JsiiSerializable, PromptStepConfigBase
(experimental) Configuration for the memory summarization step.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.bedrock.alpha.*;
PromptMemorySummarizationConfigCustomParser promptMemorySummarizationConfigCustomParser = PromptMemorySummarizationConfigCustomParser.builder()
.stepType(AgentStepType.PRE_PROCESSING)
// the properties below are optional
.customPromptTemplate("customPromptTemplate")
.inferenceConfig(InferenceConfiguration.builder()
.maximumLength(123)
.stopSequences(List.of("stopSequences"))
.temperature(123)
.topK(123)
.topP(123)
.build())
.stepEnabled(false)
.useCustomParser(false)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forPromptMemorySummarizationConfigCustomParserstatic final classAn implementation forPromptMemorySummarizationConfigCustomParser -
Method Summary
Static MethodsMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.bedrock.alpha.PromptStepConfigBase
getCustomPromptTemplate, getInferenceConfig, getStepEnabled, getStepType, getUseCustomParser
-
Method Details