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