Sha256: 3d41b8fc262872c174654a6b26f4e3b3b037a2dadfc3fcd65d2d30379546a9cf
Contents?: true
Size: 611 Bytes
Versions: 3
Compression:
Stored size: 611 Bytes
Contents
# frozen_string_literal: true require 'spec_helper' require 'bedrock_runtime/payload_builders/cohere/embed_multilingual_v3' RSpec.describe RubyAmazonBedrock::PayloadBuilders::Cohere::EmbedMultilingualV3 do let(:prompt) { 'example_prompt' } let(:options) { {} } let(:body) do { texts: [prompt], input_type: 'search_document', truncate: 'NONE' }.to_json end describe '#build' do it_behaves_like 'a payload builder' context 'with custom parameters' do include_context 'cohere embed parameters' it_should_behave_like 'a payload builder' end end end
Version data entries
3 entries across 3 versions & 1 rubygems