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