Interface ConverseStreamRequest.Builder

  • Method Details

    • modelId

      The ID for the model.

      The modelId to provide depends on the type of model or throughput that you use:

      The Converse API doesn't support imported models.

      Parameters:
      modelId - The ID for the model.

      The modelId to provide depends on the type of model or throughput that you use:

      The Converse API doesn't support imported models.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • messages

      The messages that you want to send to the model.

      Parameters:
      messages - The messages that you want to send to the model.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • messages

      ConverseStreamRequest.Builder messages(Message... messages)

      The messages that you want to send to the model.

      Parameters:
      messages - The messages that you want to send to the model.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • messages

      The messages that you want to send to the model.

      This is a convenience method that creates an instance of the Message.Builder avoiding the need to create one manually via Message.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to messages(List<Message>).

      Parameters:
      messages - a consumer that will call methods on Message.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • system

      A system prompt to send to the model.

      Parameters:
      system - A system prompt to send to the model.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • system

      A system prompt to send to the model.

      Parameters:
      system - A system prompt to send to the model.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • system

      A system prompt to send to the model.

      This is a convenience method that creates an instance of the SystemContentBlock.Builder avoiding the need to create one manually via SystemContentBlock.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to system(List<SystemContentBlock>).

      Parameters:
      system - a consumer that will call methods on SystemContentBlock.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • inferenceConfig

      ConverseStreamRequest.Builder inferenceConfig(InferenceConfiguration inferenceConfig)

      Inference parameters to pass to the model. ConverseStream supports a base set of inference parameters. If you need to pass additional parameters that the model supports, use the additionalModelRequestFields request field.

      Parameters:
      inferenceConfig - Inference parameters to pass to the model. ConverseStream supports a base set of inference parameters. If you need to pass additional parameters that the model supports, use the additionalModelRequestFields request field.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • inferenceConfig

      default ConverseStreamRequest.Builder inferenceConfig(Consumer<InferenceConfiguration.Builder> inferenceConfig)

      Inference parameters to pass to the model. ConverseStream supports a base set of inference parameters. If you need to pass additional parameters that the model supports, use the additionalModelRequestFields request field.

      This is a convenience method that creates an instance of the InferenceConfiguration.Builder avoiding the need to create one manually via InferenceConfiguration.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to inferenceConfig(InferenceConfiguration).

      Parameters:
      inferenceConfig - a consumer that will call methods on InferenceConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • toolConfig

      Configuration information for the tools that the model can use when generating a response.

      This field is only supported by Anthropic Claude 3 models.

      Parameters:
      toolConfig - Configuration information for the tools that the model can use when generating a response.

      This field is only supported by Anthropic Claude 3 models.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • toolConfig

      Configuration information for the tools that the model can use when generating a response.

      This field is only supported by Anthropic Claude 3 models.

      This is a convenience method that creates an instance of the ToolConfiguration.Builder avoiding the need to create one manually via ToolConfiguration.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to toolConfig(ToolConfiguration).

      Parameters:
      toolConfig - a consumer that will call methods on ToolConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • guardrailConfig

      Configuration information for a guardrail that you want to use in the request.

      Parameters:
      guardrailConfig - Configuration information for a guardrail that you want to use in the request.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • guardrailConfig

      Configuration information for a guardrail that you want to use in the request.

      This is a convenience method that creates an instance of the GuardrailStreamConfiguration.Builder avoiding the need to create one manually via GuardrailStreamConfiguration.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to guardrailConfig(GuardrailStreamConfiguration).

      Parameters:
      guardrailConfig - a consumer that will call methods on GuardrailStreamConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • additionalModelRequestFields

      ConverseStreamRequest.Builder additionalModelRequestFields(Document additionalModelRequestFields)

      Additional inference parameters that the model supports, beyond the base set of inference parameters that ConverseStream supports in the inferenceConfig field.

      Parameters:
      additionalModelRequestFields - Additional inference parameters that the model supports, beyond the base set of inference parameters that ConverseStream supports in the inferenceConfig field.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • additionalModelResponseFieldPaths

      ConverseStreamRequest.Builder additionalModelResponseFieldPaths(Collection<String> additionalModelResponseFieldPaths)

      Additional model parameters field paths to return in the response. ConverseStream returns the requested fields as a JSON Pointer object in the additionalModelResponseFields field. The following is example JSON for additionalModelResponseFieldPaths.

      [ "/stop_sequence" ]

      For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation.

      ConverseStream rejects an empty JSON Pointer or incorrectly structured JSON Pointer with a 400 error code. if the JSON Pointer is valid, but the requested field is not in the model response, it is ignored by ConverseStream.

      Parameters:
      additionalModelResponseFieldPaths - Additional model parameters field paths to return in the response. ConverseStream returns the requested fields as a JSON Pointer object in the additionalModelResponseFields field. The following is example JSON for additionalModelResponseFieldPaths.

      [ "/stop_sequence" ]

      For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation.

      ConverseStream rejects an empty JSON Pointer or incorrectly structured JSON Pointer with a 400 error code. if the JSON Pointer is valid, but the requested field is not in the model response, it is ignored by ConverseStream.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • additionalModelResponseFieldPaths

      ConverseStreamRequest.Builder additionalModelResponseFieldPaths(String... additionalModelResponseFieldPaths)

      Additional model parameters field paths to return in the response. ConverseStream returns the requested fields as a JSON Pointer object in the additionalModelResponseFields field. The following is example JSON for additionalModelResponseFieldPaths.

      [ "/stop_sequence" ]

      For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation.

      ConverseStream rejects an empty JSON Pointer or incorrectly structured JSON Pointer with a 400 error code. if the JSON Pointer is valid, but the requested field is not in the model response, it is ignored by ConverseStream.

      Parameters:
      additionalModelResponseFieldPaths - Additional model parameters field paths to return in the response. ConverseStream returns the requested fields as a JSON Pointer object in the additionalModelResponseFields field. The following is example JSON for additionalModelResponseFieldPaths.

      [ "/stop_sequence" ]

      For information about the JSON Pointer syntax, see the Internet Engineering Task Force (IETF) documentation.

      ConverseStream rejects an empty JSON Pointer or incorrectly structured JSON Pointer with a 400 error code. if the JSON Pointer is valid, but the requested field is not in the model response, it is ignored by ConverseStream.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • overrideConfiguration

      ConverseStreamRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      overrideConfiguration - The override configuration.
      Returns:
      This object for method chaining.
    • overrideConfiguration

      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      builderConsumer - A Consumer to which an empty AwsRequestOverrideConfiguration.Builder will be given.
      Returns:
      This object for method chaining.