Sha256: b523d6808fcd523d899210c73a6538f9e49ce68302d4dcdba23735f5e753dd52

Contents?: true

Size: 709 Bytes

Versions: 6

Compression:

Stored size: 709 Bytes

Contents

# frozen_string_literal: true

module RubyAmazonBedrock
  module PayloadBuilders
    module Anthropic
      # ClaudeInstantV1 is a subclass of Base. It provides functionalities specific to the Anthropic
      # Claude Instant 1.2 model.
      #
      # @see https://us-east-1.console.aws.amazon.com/bedrock/home?region=us-east-1#/providers?model=anthropic.claude-instant-v1
      # for more information about the Anthropic model.
      class ClaudeInstantV1 < Base
        # Returns the model ID for the Anthropic Claude Instant 1.2 model.
        #
        # @return [String] 'amazon.titan-text-express-v1'
        def model_id
          'anthropic.claude-instant-v1'
        end
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ruby-amazon-bedrock-0.2.4 lib/bedrock_runtime/payload_builders/anthropic/claude_instant_v1.rb
ruby-amazon-bedrock-0.2.3 lib/bedrock_runtime/payload_builders/anthropic/claude_instant_v1.rb
ruby-amazon-bedrock-0.2.2 lib/bedrock_runtime/payload_builders/anthropic/claude_instant_v1.rb
ruby-amazon-bedrock-0.2.1 lib/bedrock_runtime/payload_builders/anthropic/claude_instant_v1.rb
ruby-amazon-bedrock-0.2.0 lib/bedrock_runtime/payload_builders/anthropic/claude_instant_v1.rb
ruby-amazon-bedrock-0.1.1 lib/bedrock_runtime/payload_builders/anthropic/claude_instant_v1.rb