Sha256: 2f6f0ba26200cb91d35fcfd656b08785de2372f3b7543dc82c867a8a1169f334
Contents?: true
Size: 1.48 KB
Versions: 45
Compression:
Stored size: 1.48 KB
Contents
=begin #Carbon #Connect external data to LLMs, no matter the source. The version of the OpenAPI document: 1.0.0 =end require 'spec_helper' require 'json' require 'date' # Unit tests for Carbon::EmbeddingsAndChunksQueryInputV2 describe Carbon::EmbeddingsAndChunksQueryInputV2 do let(:instance) { Carbon::EmbeddingsAndChunksQueryInputV2.new } describe 'test an instance of EmbeddingsAndChunksQueryInputV2' do it 'should create an instance of EmbeddingsAndChunksQueryInputV2' do expect(instance).to be_instance_of(Carbon::EmbeddingsAndChunksQueryInputV2) end end describe 'test attribute "pagination"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "order_by"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "order_dir"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "filters"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "include_vectors"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end
Version data entries
45 entries across 45 versions & 1 rubygems