Sha256: 1375dd78121c624f49966b9674d75569f3d6657ed17c070cf058f0f6fb8d1040
Contents?: true
Size: 741 Bytes
Versions: 6
Compression:
Stored size: 741 Bytes
Contents
# frozen_string_literal: true require_relative 'base' module RubyAmazonBedrock module PayloadBuilders module Amazon # TitanTextExpressV1 is a subclass of Base. It provides functionalities specific to the Amazon # Titan Text G1 - Express model. # # @see https://us-east-1.console.aws.amazon.com/bedrock/home?region=us-east-1#/providers?model=amazon.titan-text-express-v1 # for more information about the Amazon model. class TitanTextExpressV1 < Base # Returns the model ID for the Amazon Titan Text G1 - Express model. # # @return [String] 'amazon.titan-text-express-v1' def model_id 'amazon.titan-text-express-v1' end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems