Interface KnowledgeBaseRetrieveAndGenerateConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KnowledgeBaseRetrieveAndGenerateConfiguration.Builder,KnowledgeBaseRetrieveAndGenerateConfiguration>,SdkBuilder<KnowledgeBaseRetrieveAndGenerateConfiguration.Builder,KnowledgeBaseRetrieveAndGenerateConfiguration>,SdkPojo
- Enclosing class:
- KnowledgeBaseRetrieveAndGenerateConfiguration
@Mutable @NotThreadSafe public static interface KnowledgeBaseRetrieveAndGenerateConfiguration.Builder extends SdkPojo, CopyableBuilder<KnowledgeBaseRetrieveAndGenerateConfiguration.Builder,KnowledgeBaseRetrieveAndGenerateConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default KnowledgeBaseRetrieveAndGenerateConfiguration.BuildergenerationConfiguration(Consumer<GenerationConfiguration.Builder> generationConfiguration)Contains configurations details for response generation based on retrieved text chunks.KnowledgeBaseRetrieveAndGenerateConfiguration.BuildergenerationConfiguration(GenerationConfiguration generationConfiguration)Contains configurations details for response generation based on retrieved text chunks.KnowledgeBaseRetrieveAndGenerateConfiguration.BuilderknowledgeBaseId(String knowledgeBaseId)The unique identifier of the knowledge base.KnowledgeBaseRetrieveAndGenerateConfiguration.BuildermodelArn(String modelArn)The Amazon Resource Name (ARN) of the foundation model or inference profile used to generate responses.default KnowledgeBaseRetrieveAndGenerateConfiguration.BuilderorchestrationConfiguration(Consumer<OrchestrationConfiguration.Builder> orchestrationConfiguration)Contains configuration details for the model to process the prompt prior to retrieval and response generation.KnowledgeBaseRetrieveAndGenerateConfiguration.BuilderorchestrationConfiguration(OrchestrationConfiguration orchestrationConfiguration)Contains configuration details for the model to process the prompt prior to retrieval and response generation.default KnowledgeBaseRetrieveAndGenerateConfiguration.BuilderretrievalConfiguration(Consumer<KnowledgeBaseRetrievalConfiguration.Builder> retrievalConfiguration)Contains configuration details for retrieving text chunks.KnowledgeBaseRetrieveAndGenerateConfiguration.BuilderretrievalConfiguration(KnowledgeBaseRetrievalConfiguration retrievalConfiguration)Contains configuration details for retrieving text chunks.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
knowledgeBaseId
KnowledgeBaseRetrieveAndGenerateConfiguration.Builder knowledgeBaseId(String knowledgeBaseId)
The unique identifier of the knowledge base.
- Parameters:
knowledgeBaseId- The unique identifier of the knowledge base.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
modelArn
KnowledgeBaseRetrieveAndGenerateConfiguration.Builder modelArn(String modelArn)
The Amazon Resource Name (ARN) of the foundation model or inference profile used to generate responses.
- Parameters:
modelArn- The Amazon Resource Name (ARN) of the foundation model or inference profile used to generate responses.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
retrievalConfiguration
KnowledgeBaseRetrieveAndGenerateConfiguration.Builder retrievalConfiguration(KnowledgeBaseRetrievalConfiguration retrievalConfiguration)
Contains configuration details for retrieving text chunks.
- Parameters:
retrievalConfiguration- Contains configuration details for retrieving text chunks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
retrievalConfiguration
default KnowledgeBaseRetrieveAndGenerateConfiguration.Builder retrievalConfiguration(Consumer<KnowledgeBaseRetrievalConfiguration.Builder> retrievalConfiguration)
Contains configuration details for retrieving text chunks.
This is a convenience method that creates an instance of theKnowledgeBaseRetrievalConfiguration.Builderavoiding the need to create one manually viaKnowledgeBaseRetrievalConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toretrievalConfiguration(KnowledgeBaseRetrievalConfiguration).- Parameters:
retrievalConfiguration- a consumer that will call methods onKnowledgeBaseRetrievalConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
retrievalConfiguration(KnowledgeBaseRetrievalConfiguration)
-
generationConfiguration
KnowledgeBaseRetrieveAndGenerateConfiguration.Builder generationConfiguration(GenerationConfiguration generationConfiguration)
Contains configurations details for response generation based on retrieved text chunks.
- Parameters:
generationConfiguration- Contains configurations details for response generation based on retrieved text chunks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
generationConfiguration
default KnowledgeBaseRetrieveAndGenerateConfiguration.Builder generationConfiguration(Consumer<GenerationConfiguration.Builder> generationConfiguration)
Contains configurations details for response generation based on retrieved text chunks.
This is a convenience method that creates an instance of theGenerationConfiguration.Builderavoiding the need to create one manually viaGenerationConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed togenerationConfiguration(GenerationConfiguration).- Parameters:
generationConfiguration- a consumer that will call methods onGenerationConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
generationConfiguration(GenerationConfiguration)
-
orchestrationConfiguration
KnowledgeBaseRetrieveAndGenerateConfiguration.Builder orchestrationConfiguration(OrchestrationConfiguration orchestrationConfiguration)
Contains configuration details for the model to process the prompt prior to retrieval and response generation.
- Parameters:
orchestrationConfiguration- Contains configuration details for the model to process the prompt prior to retrieval and response generation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
orchestrationConfiguration
default KnowledgeBaseRetrieveAndGenerateConfiguration.Builder orchestrationConfiguration(Consumer<OrchestrationConfiguration.Builder> orchestrationConfiguration)
Contains configuration details for the model to process the prompt prior to retrieval and response generation.
This is a convenience method that creates an instance of theOrchestrationConfiguration.Builderavoiding the need to create one manually viaOrchestrationConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toorchestrationConfiguration(OrchestrationConfiguration).- Parameters:
orchestrationConfiguration- a consumer that will call methods onOrchestrationConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
orchestrationConfiguration(OrchestrationConfiguration)
-
-