Sha256: cf5709ddcd2906eb2bebb34d8c24f74db8afdd3b980d5c8b177601452ff77bd2
Contents?: true
Size: 1.95 KB
Versions: 46
Compression:
Stored size: 1.95 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::RawTextInput describe Carbon::RawTextInput do let(:instance) { Carbon::RawTextInput.new } describe 'test an instance of RawTextInput' do it 'should create an instance of RawTextInput' do expect(instance).to be_instance_of(Carbon::RawTextInput) end end describe 'test attribute "contents"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "name"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "chunk_size"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "chunk_overlap"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "skip_embedding_generation"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "overwrite_file_id"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "embedding_model"' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end describe 'test attribute "generate_sparse_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
46 entries across 46 versions & 1 rubygems