Sha256: 157265af8aedcaf2ffe2418eb8c3229f26265f83128cb0a3e0f87358d033c32f
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 KB
Contents
# frozen_string_literal: true require 'bedrock_runtime/payload_factory' require 'spec_helper' require 'pry' RSpec.describe RubyAmazonBedrock::PayloadFactory do let(:bedrock_models) do ["ai21labs.j2-mid-v1", "ai21labs.j2-ultra-v1", "amazon.titan-image-generator-v1", "amazon.titan-text-lite-v1", "amazon.titan-text-express-v1", "anthropic.claude-v1", "anthropic.claude-instant-v1", "anthropic.claude-v2", "cohere.command-light-text-v14", "cohere.command-text-v14", "cohere.embed-english-v3", "cohere.embed-multilingual-v3", "meta.llama2-13b-chat-v1", "meta.llama2-70b-chat-v1", "stability.stable-diffusion-xl-v0", "stability.stable-diffusion-xl-v1"] end let(:models_mapping) { described_class.new(nil, nil).models_to_builders } describe '#create' do context 'when model_id is a valid Bedrock model' do it 'creates a payload using the appropriate builder' do model_id = bedrock_models.sample input = 'test input' builder = described_class.new(model_id, input).create expect(builder).to be_a(models_mapping[model_id]) end end context 'when model_id is not a valid Bedrock model' do it 'raises an UnknownModelError' do model_id = 'unknown_model' input = 'test input' payload_factory = described_class.new(model_id, input) expect { payload_factory.create }.to raise_error(RubyAmazonBedrock::UnknownModelError, "Unknown modelId: #{model_id}") end end end describe '#models_to_builders' do it 'defines a mapping of model identifiers to builder classes' do expect(models_mapping.keys).to eq(bedrock_models) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-amazon-bedrock-0.1.1 | spec/bedrock_runtime/payload_factory_spec.rb |