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

Version Path
ruby-amazon-bedrock-0.2.4 lib/bedrock_runtime/payload_builders/cohere/command_light_text_v14.rb
ruby-amazon-bedrock-0.2.3 lib/bedrock_runtime/payload_builders/cohere/command_light_text_v14.rb
ruby-amazon-bedrock-0.2.2 lib/bedrock_runtime/payload_builders/cohere/command_light_text_v14.rb
ruby-amazon-bedrock-0.2.1 lib/bedrock_runtime/payload_builders/cohere/command_light_text_v14.rb
ruby-amazon-bedrock-0.2.0 lib/bedrock_runtime/payload_builders/cohere/command_light_text_v14.rb
ruby-amazon-bedrock-0.1.1 lib/bedrock_runtime/payload_builders/cohere/command_light_text_v14.rb