Sha256: 31f09d8a8f9a549705022c5603d847e94302bd4df944e21d445faaaa4322c106
Contents?: true
Size: 672 Bytes
Versions: 6
Compression:
Stored size: 672 Bytes
Contents
# frozen_string_literal: true module RubyAmazonBedrock module PayloadBuilders module Meta # Llama270bChatV1 is a subclass of Base. It provides functionalities specific to the Meta # Llama 2 Chat 70B model. # # @see https://us-east-1.console.aws.amazon.com/bedrock/home?region=us-east-1#/providers?model=meta.llama2-70b-chat-v1 # for more information about the Meta model. class Llama270bChatV1 < Base # Returns the model ID for the Meta Llama 2 Chat 70B model. # # @return [String] 'meta.llama2-70b-chat-v1' def model_id 'meta.llama2-70b-chat-v1' end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems