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