Sha256: 251b41dc17510ae100ed80ac37ed73bc724fd8f253c01f0eb4bc2cfb38db6dec
Contents?: true
Size: 740 Bytes
Versions: 6
Compression:
Stored size: 740 Bytes
Contents
# frozen_string_literal: true require_relative 'command_base' module RubyAmazonBedrock module PayloadBuilders module Cohere # CommandLightTextV14 is a subclass of Base. It provides functionalities specific to the Cohere # Command Light model. # # @see https://us-east-1.console.aws.amazon.com/bedrock/home?region=us-east-1#/providers?model=cohere.command-light-text-v14 # for more information about the Cohere model. class CommandLightTextV14 < CommandBase # Returns the model ID for the Cohere Command Light model. # # @return [String] 'cohere.command-light-text-v14' def model_id 'cohere.command-light-text-v14' end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems