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