Sha256: a40a56766b4744f38a9644b9770e95d223bc828585c1c90f3dfbb284f89ad3c3
Contents?: true
Size: 679 Bytes
Versions: 6
Compression:
Stored size: 679 Bytes
Contents
# frozen_string_literal: true require_relative 'base' module RubyAmazonBedrock module PayloadBuilders module Anthropic # ClaudeV1 is a subclass of Base. It provides functionalities specific to the Anthropic # Claude 1.3 model. # # @see https://us-east-1.console.aws.amazon.com/bedrock/home?region=us-east-1#/providers?model=anthropic.claude-v1 # for more information about the Anthropic model. class ClaudeV1 < Base # Returns the model ID for the Anthropic Claude 1.3 model. # # @return [String] 'anthropic.claude-v1' def model_id 'anthropic.claude-v1' end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems