carbon_ruby_sdk 0.1.5 → 0.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +100 -9
- data/lib/carbon_ruby_sdk/api/embeddings_api.rb +10 -2
- data/lib/carbon_ruby_sdk/api/files_api.rb +6 -2
- data/lib/carbon_ruby_sdk/api/integrations_api.rb +168 -19
- data/lib/carbon_ruby_sdk/models/authentication_property.rb +436 -0
- data/lib/carbon_ruby_sdk/models/chunks_and_embeddings.rb +1 -5
- data/lib/carbon_ruby_sdk/models/chunks_and_embeddings_upload_input.rb +24 -4
- data/lib/carbon_ruby_sdk/models/confluence_authentication.rb +254 -0
- data/lib/carbon_ruby_sdk/models/connect_data_source_input.rb +229 -0
- data/lib/carbon_ruby_sdk/models/connect_data_source_response.rb +230 -0
- data/lib/carbon_ruby_sdk/models/freskdesk_authentication.rb +244 -0
- data/lib/carbon_ruby_sdk/models/gitbook_authetication.rb +244 -0
- data/lib/carbon_ruby_sdk/models/gmail_sync_input.rb +15 -5
- data/lib/carbon_ruby_sdk/models/notion_authentication.rb +244 -0
- data/lib/carbon_ruby_sdk/models/o_auth_authentication.rb +244 -0
- data/lib/carbon_ruby_sdk/models/o_auth_url_request.rb +29 -4
- data/lib/carbon_ruby_sdk/models/organization_user_data_source_api.rb +11 -1
- data/lib/carbon_ruby_sdk/models/outh_url_response.rb +220 -0
- data/lib/carbon_ruby_sdk/models/outlook_sync_input.rb +15 -5
- data/lib/carbon_ruby_sdk/models/resync_file_query_input.rb +16 -5
- data/lib/carbon_ruby_sdk/models/s3_authentication.rb +244 -0
- data/lib/carbon_ruby_sdk/models/s3_file_sync_input.rb +14 -4
- data/lib/carbon_ruby_sdk/models/salesforce_authentication.rb +254 -0
- data/lib/carbon_ruby_sdk/models/sharepoint_authentication.rb +268 -0
- data/lib/carbon_ruby_sdk/models/simple_o_auth_data_sources.rb +41 -0
- data/lib/carbon_ruby_sdk/models/sitemap_scrape_request.rb +15 -0
- data/lib/carbon_ruby_sdk/models/sync_options.rb +322 -0
- data/lib/carbon_ruby_sdk/models/webscrape_request.rb +30 -0
- data/lib/carbon_ruby_sdk/models/zendesk_authentication.rb +244 -0
- data/lib/carbon_ruby_sdk/models/zotero_authentication.rb +272 -0
- data/lib/carbon_ruby_sdk/version.rb +1 -1
- data/lib/carbon_ruby_sdk.rb +16 -0
- data/spec/api/integrations_api_spec.rb +16 -1
- data/spec/models/authentication_property_spec.rb +112 -0
- data/spec/models/chunks_and_embeddings_upload_input_spec.rb +12 -0
- data/spec/models/confluence_authentication_spec.rb +46 -0
- data/spec/models/connect_data_source_input_spec.rb +34 -0
- data/spec/models/connect_data_source_response_spec.rb +34 -0
- data/spec/models/freskdesk_authentication_spec.rb +40 -0
- data/spec/models/gitbook_authetication_spec.rb +40 -0
- data/spec/models/gmail_sync_input_spec.rb +6 -0
- data/spec/models/notion_authentication_spec.rb +40 -0
- data/spec/models/o_auth_authentication_spec.rb +40 -0
- data/spec/models/o_auth_url_request_spec.rb +12 -0
- data/spec/models/organization_user_data_source_api_spec.rb +6 -0
- data/spec/models/outh_url_response_spec.rb +28 -0
- data/spec/models/outlook_sync_input_spec.rb +6 -0
- data/spec/models/resync_file_query_input_spec.rb +6 -0
- data/spec/models/s3_authentication_spec.rb +40 -0
- data/spec/models/s3_file_sync_input_spec.rb +6 -0
- data/spec/models/salesforce_authentication_spec.rb +46 -0
- data/spec/models/sharepoint_authentication_spec.rb +52 -0
- data/spec/models/simple_o_auth_data_sources_spec.rb +22 -0
- data/spec/models/sync_options_spec.rb +82 -0
- data/spec/models/zendesk_authentication_spec.rb +40 -0
- data/spec/models/zotero_authentication_spec.rb +52 -0
- metadata +50 -2
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::FreskdeskAuthentication
|
14
|
+
describe Carbon::FreskdeskAuthentication do
|
15
|
+
let(:instance) { Carbon::FreskdeskAuthentication.new }
|
16
|
+
|
17
|
+
describe 'test an instance of FreskdeskAuthentication' do
|
18
|
+
it 'should create an instance of FreskdeskAuthentication' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::FreskdeskAuthentication)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "source"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "domain"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "api_key"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::GitbookAuthetication
|
14
|
+
describe Carbon::GitbookAuthetication do
|
15
|
+
let(:instance) { Carbon::GitbookAuthetication.new }
|
16
|
+
|
17
|
+
describe 'test an instance of GitbookAuthetication' do
|
18
|
+
it 'should create an instance of GitbookAuthetication' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::GitbookAuthetication)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "source"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "access_token"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "organization_name"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::NotionAuthentication
|
14
|
+
describe Carbon::NotionAuthentication do
|
15
|
+
let(:instance) { Carbon::NotionAuthentication.new }
|
16
|
+
|
17
|
+
describe 'test an instance of NotionAuthentication' do
|
18
|
+
it 'should create an instance of NotionAuthentication' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::NotionAuthentication)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "source"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "access_token"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "workspace_id"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::OAuthAuthentication
|
14
|
+
describe Carbon::OAuthAuthentication do
|
15
|
+
let(:instance) { Carbon::OAuthAuthentication.new }
|
16
|
+
|
17
|
+
describe 'test an instance of OAuthAuthentication' do
|
18
|
+
it 'should create an instance of OAuthAuthentication' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::OAuthAuthentication)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "source"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "access_token"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "refresh_token"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -121,4 +121,16 @@ describe Carbon::OAuthURLRequest do
|
|
121
121
|
end
|
122
122
|
end
|
123
123
|
|
124
|
+
describe 'test attribute "data_source_id"' do
|
125
|
+
it 'should work' do
|
126
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
describe 'test attribute "connecting_new_account"' do
|
131
|
+
it 'should work' do
|
132
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
124
136
|
end
|
@@ -37,6 +37,12 @@ describe Carbon::OrganizationUserDataSourceAPI do
|
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
|
+
describe 'test attribute "token"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
40
46
|
describe 'test attribute "sync_status"' do
|
41
47
|
it 'should work' do
|
42
48
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
@@ -0,0 +1,28 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::OuthURLResponse
|
14
|
+
describe Carbon::OuthURLResponse do
|
15
|
+
let(:instance) { Carbon::OuthURLResponse.new }
|
16
|
+
|
17
|
+
describe 'test an instance of OuthURLResponse' do
|
18
|
+
it 'should create an instance of OuthURLResponse' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::OuthURLResponse)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "oauth_url"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
@@ -37,4 +37,10 @@ describe Carbon::ResyncFileQueryInput do
|
|
37
37
|
end
|
38
38
|
end
|
39
39
|
|
40
|
+
describe 'test attribute "force_embedding_generation"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
40
46
|
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::S3Authentication
|
14
|
+
describe Carbon::S3Authentication do
|
15
|
+
let(:instance) { Carbon::S3Authentication.new }
|
16
|
+
|
17
|
+
describe 'test an instance of S3Authentication' do
|
18
|
+
it 'should create an instance of S3Authentication' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::S3Authentication)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "source"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "access_key"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "access_key_secret"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::SalesforceAuthentication
|
14
|
+
describe Carbon::SalesforceAuthentication do
|
15
|
+
let(:instance) { Carbon::SalesforceAuthentication.new }
|
16
|
+
|
17
|
+
describe 'test an instance of SalesforceAuthentication' do
|
18
|
+
it 'should create an instance of SalesforceAuthentication' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::SalesforceAuthentication)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "source"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "access_token"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "refresh_token"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "domain"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::SharepointAuthentication
|
14
|
+
describe Carbon::SharepointAuthentication do
|
15
|
+
let(:instance) { Carbon::SharepointAuthentication.new }
|
16
|
+
|
17
|
+
describe 'test an instance of SharepointAuthentication' do
|
18
|
+
it 'should create an instance of SharepointAuthentication' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::SharepointAuthentication)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "source"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "access_token"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "refresh_token"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "tenant_name"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "site_name"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::SimpleOAuthDataSources
|
14
|
+
describe Carbon::SimpleOAuthDataSources do
|
15
|
+
let(:instance) { Carbon::SimpleOAuthDataSources.new }
|
16
|
+
|
17
|
+
describe 'test an instance of SimpleOAuthDataSources' do
|
18
|
+
it 'should create an instance of SimpleOAuthDataSources' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::SimpleOAuthDataSources)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,82 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::SyncOptions
|
14
|
+
describe Carbon::SyncOptions do
|
15
|
+
let(:instance) { Carbon::SyncOptions.new }
|
16
|
+
|
17
|
+
describe 'test an instance of SyncOptions' do
|
18
|
+
it 'should create an instance of SyncOptions' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::SyncOptions)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "tags"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "chunk_size"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "chunk_overlap"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "skip_embedding_generation"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "embedding_model"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
describe 'test attribute "generate_sparse_vectors"' do
|
53
|
+
it 'should work' do
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
describe 'test attribute "prepend_filename_to_chunks"' do
|
59
|
+
it 'should work' do
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
describe 'test attribute "max_items_per_chunk"' do
|
65
|
+
it 'should work' do
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
describe 'test attribute "sync_files_on_connection"' do
|
71
|
+
it 'should work' do
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
describe 'test attribute "set_page_as_boundary"' do
|
77
|
+
it 'should work' do
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::ZendeskAuthentication
|
14
|
+
describe Carbon::ZendeskAuthentication do
|
15
|
+
let(:instance) { Carbon::ZendeskAuthentication.new }
|
16
|
+
|
17
|
+
describe 'test an instance of ZendeskAuthentication' do
|
18
|
+
it 'should create an instance of ZendeskAuthentication' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::ZendeskAuthentication)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "source"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "access_token"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "subdomain"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
=begin
|
2
|
+
#Carbon
|
3
|
+
|
4
|
+
#Connect external data to LLMs, no matter the source.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
7
|
+
=end
|
8
|
+
|
9
|
+
require 'spec_helper'
|
10
|
+
require 'json'
|
11
|
+
require 'date'
|
12
|
+
|
13
|
+
# Unit tests for Carbon::ZoteroAuthentication
|
14
|
+
describe Carbon::ZoteroAuthentication do
|
15
|
+
let(:instance) { Carbon::ZoteroAuthentication.new }
|
16
|
+
|
17
|
+
describe 'test an instance of ZoteroAuthentication' do
|
18
|
+
it 'should create an instance of ZoteroAuthentication' do
|
19
|
+
expect(instance).to be_instance_of(Carbon::ZoteroAuthentication)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
describe 'test attribute "source"' do
|
23
|
+
it 'should work' do
|
24
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe 'test attribute "access_token"' do
|
29
|
+
it 'should work' do
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe 'test attribute "access_token_secret"' do
|
35
|
+
it 'should work' do
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
describe 'test attribute "username"' do
|
41
|
+
it 'should work' do
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
describe 'test attribute "zotero_id"' do
|
47
|
+
it 'should work' do
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|