ragie_ruby_sdk 1.0.16 → 1.0.17
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/README.md +16 -5
- data/docs/CodeInterpreterOutput.md +28 -0
- data/docs/CodeInterpreterOutputLogs.md +20 -0
- data/docs/FileSearchOutput.md +26 -0
- data/docs/FileSearchResult.md +26 -0
- data/docs/FinalAnswerStepsInner.md +4 -0
- data/docs/QueryDetails.md +24 -0
- data/docs/ReasoningOutput.md +28 -0
- data/docs/ReasoningSummary.md +20 -0
- data/docs/ReasoningText.md +20 -0
- data/docs/Response.md +1 -1
- data/docs/ResponseOutputInner.md +40 -0
- data/docs/{ResponseOutput.md → ResponseOutputMessage.md} +2 -2
- data/docs/SearchEffort.md +15 -0
- data/docs/SearchStep.md +1 -1
- data/docs/SearchStepWithQueryDetails.md +24 -0
- data/lib/ragie_ruby_sdk/models/code_interpreter_output.rb +389 -0
- data/lib/ragie_ruby_sdk/models/code_interpreter_output_logs.rb +283 -0
- data/lib/ragie_ruby_sdk/models/file_search_output.rb +368 -0
- data/lib/ragie_ruby_sdk/models/file_search_result.rb +348 -0
- data/lib/ragie_ruby_sdk/models/final_answer_steps_inner.rb +1 -0
- data/lib/ragie_ruby_sdk/models/query_details.rb +341 -0
- data/lib/ragie_ruby_sdk/models/reasoning_output.rb +391 -0
- data/lib/ragie_ruby_sdk/models/reasoning_summary.rb +283 -0
- data/lib/ragie_ruby_sdk/models/reasoning_text.rb +283 -0
- data/lib/ragie_ruby_sdk/models/response.rb +1 -1
- data/lib/ragie_ruby_sdk/models/response_output_inner.rb +105 -0
- data/lib/ragie_ruby_sdk/models/{response_output.rb → response_output_message.rb} +3 -3
- data/lib/ragie_ruby_sdk/models/search_effort.rb +41 -0
- data/lib/ragie_ruby_sdk/models/search_step.rb +3 -3
- data/lib/ragie_ruby_sdk/models/search_step_with_query_details.rb +306 -0
- data/lib/ragie_ruby_sdk/version.rb +1 -1
- data/lib/ragie_ruby_sdk.rb +12 -1
- data/spec/models/code_interpreter_output_logs_spec.rb +46 -0
- data/spec/models/code_interpreter_output_spec.rb +74 -0
- data/spec/models/file_search_output_spec.rb +68 -0
- data/spec/models/file_search_result_spec.rb +60 -0
- data/spec/models/query_details_spec.rb +54 -0
- data/spec/models/reasoning_output_spec.rb +74 -0
- data/spec/models/reasoning_summary_spec.rb +46 -0
- data/spec/models/reasoning_text_spec.rb +46 -0
- data/spec/models/response_output_inner_spec.rb +21 -0
- data/spec/models/{response_output_spec.rb → response_output_message_spec.rb} +6 -6
- data/spec/models/search_effort_spec.rb +30 -0
- data/spec/models/search_step_spec.rb +1 -1
- data/spec/models/search_step_with_query_details_spec.rb +58 -0
- metadata +49 -5
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Ragie API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.17.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for RagieRubySdk::ReasoningOutput
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe RagieRubySdk::ReasoningOutput do
|
|
21
|
+
#let(:instance) { RagieRubySdk::ReasoningOutput.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ReasoningOutput' do
|
|
24
|
+
it 'should create an instance of ReasoningOutput' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(RagieRubySdk::ReasoningOutput)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "id"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "summary"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
describe 'test attribute "type"' do
|
|
43
|
+
it 'should work' do
|
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["reasoning"])
|
|
46
|
+
# validator.allowable_values.each do |value|
|
|
47
|
+
# expect { instance.type = value }.not_to raise_error
|
|
48
|
+
# end
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "content"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "encrypted_content"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
describe 'test attribute "status"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
67
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["in_progress", "completed", "incomplete"])
|
|
68
|
+
# validator.allowable_values.each do |value|
|
|
69
|
+
# expect { instance.status = value }.not_to raise_error
|
|
70
|
+
# end
|
|
71
|
+
end
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
end
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Ragie API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.17.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for RagieRubySdk::ReasoningSummary
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe RagieRubySdk::ReasoningSummary do
|
|
21
|
+
#let(:instance) { RagieRubySdk::ReasoningSummary.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ReasoningSummary' do
|
|
24
|
+
it 'should create an instance of ReasoningSummary' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(RagieRubySdk::ReasoningSummary)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "summary"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "type"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["summary"])
|
|
40
|
+
# validator.allowable_values.each do |value|
|
|
41
|
+
# expect { instance.type = value }.not_to raise_error
|
|
42
|
+
# end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
end
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Ragie API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.17.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for RagieRubySdk::ReasoningText
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe RagieRubySdk::ReasoningText do
|
|
21
|
+
#let(:instance) { RagieRubySdk::ReasoningText.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of ReasoningText' do
|
|
24
|
+
it 'should create an instance of ReasoningText' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(RagieRubySdk::ReasoningText)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "text"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
|
|
36
|
+
describe 'test attribute "type"' do
|
|
37
|
+
it 'should work' do
|
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["reasoning_text"])
|
|
40
|
+
# validator.allowable_values.each do |value|
|
|
41
|
+
# expect { instance.type = value }.not_to raise_error
|
|
42
|
+
# end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
end
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Ragie API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.17.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for RagieRubySdk::ResponseOutputInner
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe RagieRubySdk::ResponseOutputInner do
|
|
21
|
+
end
|
|
@@ -14,16 +14,16 @@ require 'spec_helper'
|
|
|
14
14
|
require 'json'
|
|
15
15
|
require 'date'
|
|
16
16
|
|
|
17
|
-
# Unit tests for RagieRubySdk::
|
|
17
|
+
# Unit tests for RagieRubySdk::ResponseOutputMessage
|
|
18
18
|
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
19
|
# Please update as you see appropriate
|
|
20
|
-
describe RagieRubySdk::
|
|
21
|
-
#let(:instance) { RagieRubySdk::
|
|
20
|
+
describe RagieRubySdk::ResponseOutputMessage do
|
|
21
|
+
#let(:instance) { RagieRubySdk::ResponseOutputMessage.new }
|
|
22
22
|
|
|
23
|
-
describe 'test an instance of
|
|
24
|
-
it 'should create an instance of
|
|
23
|
+
describe 'test an instance of ResponseOutputMessage' do
|
|
24
|
+
it 'should create an instance of ResponseOutputMessage' do
|
|
25
25
|
# uncomment below to test the instance creation
|
|
26
|
-
#expect(instance).to be_instance_of(RagieRubySdk::
|
|
26
|
+
#expect(instance).to be_instance_of(RagieRubySdk::ResponseOutputMessage)
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Ragie API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.17.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for RagieRubySdk::SearchEffort
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe RagieRubySdk::SearchEffort do
|
|
21
|
+
#let(:instance) { RagieRubySdk::SearchEffort.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SearchEffort' do
|
|
24
|
+
it 'should create an instance of SearchEffort' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(RagieRubySdk::SearchEffort)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
end
|
|
@@ -30,7 +30,7 @@ describe RagieRubySdk::SearchStep do
|
|
|
30
30
|
describe 'test attribute "type"' do
|
|
31
31
|
it 'should work' do
|
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["
|
|
33
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["base_search"])
|
|
34
34
|
# validator.allowable_values.each do |value|
|
|
35
35
|
# expect { instance.type = value }.not_to raise_error
|
|
36
36
|
# end
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Ragie API
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 1.0.0
|
|
7
|
+
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
Generator version: 7.17.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for RagieRubySdk::SearchStepWithQueryDetails
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe RagieRubySdk::SearchStepWithQueryDetails do
|
|
21
|
+
#let(:instance) { RagieRubySdk::SearchStepWithQueryDetails.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of SearchStepWithQueryDetails' do
|
|
24
|
+
it 'should create an instance of SearchStepWithQueryDetails' do
|
|
25
|
+
# uncomment below to test the instance creation
|
|
26
|
+
#expect(instance).to be_instance_of(RagieRubySdk::SearchStepWithQueryDetails)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test attribute "type"' do
|
|
31
|
+
it 'should work' do
|
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["search"])
|
|
34
|
+
# validator.allowable_values.each do |value|
|
|
35
|
+
# expect { instance.type = value }.not_to raise_error
|
|
36
|
+
# end
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "search"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "query_details"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "search_log"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ragie_ruby_sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.17
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
@@ -114,6 +114,8 @@ files:
|
|
|
114
114
|
- docs/BodyUpdateDocumentFile.md
|
|
115
115
|
- docs/BucketData.md
|
|
116
116
|
- docs/CodeInterpreterEvidence.md
|
|
117
|
+
- docs/CodeInterpreterOutput.md
|
|
118
|
+
- docs/CodeInterpreterOutputLogs.md
|
|
117
119
|
- docs/CodeStep.md
|
|
118
120
|
- docs/ConfluenceData.md
|
|
119
121
|
- docs/Connection.md
|
|
@@ -171,6 +173,8 @@ files:
|
|
|
171
173
|
- docs/EntityList.md
|
|
172
174
|
- docs/ErrorMessage.md
|
|
173
175
|
- docs/EvaluatedAnswerStep.md
|
|
176
|
+
- docs/FileSearchOutput.md
|
|
177
|
+
- docs/FileSearchResult.md
|
|
174
178
|
- docs/FinalAnswer.md
|
|
175
179
|
- docs/FinalAnswerEvidenceInner.md
|
|
176
180
|
- docs/FinalAnswerStepsInner.md
|
|
@@ -224,14 +228,19 @@ files:
|
|
|
224
228
|
- docs/PublicIntercomConnection.md
|
|
225
229
|
- docs/PublicS3CompatibleConnection.md
|
|
226
230
|
- docs/PublicZendeskConnection.md
|
|
231
|
+
- docs/QueryDetails.md
|
|
227
232
|
- docs/RagieApiSchemaResponseUsage.md
|
|
228
233
|
- docs/RagieEvidence.md
|
|
229
234
|
- docs/Reasoning.md
|
|
235
|
+
- docs/ReasoningOutput.md
|
|
236
|
+
- docs/ReasoningSummary.md
|
|
237
|
+
- docs/ReasoningText.md
|
|
230
238
|
- docs/Request.md
|
|
231
239
|
- docs/Response.md
|
|
232
240
|
- docs/ResponseContent.md
|
|
233
241
|
- docs/ResponseOK.md
|
|
234
|
-
- docs/
|
|
242
|
+
- docs/ResponseOutputInner.md
|
|
243
|
+
- docs/ResponseOutputMessage.md
|
|
235
244
|
- docs/ResponsePatchdocumentmetadata.md
|
|
236
245
|
- docs/ResponsesApi.md
|
|
237
246
|
- docs/Retrieval.md
|
|
@@ -240,8 +249,10 @@ files:
|
|
|
240
249
|
- docs/S3CompatibleCredentials.md
|
|
241
250
|
- docs/ScoredChunk.md
|
|
242
251
|
- docs/Search.md
|
|
252
|
+
- docs/SearchEffort.md
|
|
243
253
|
- docs/SearchResultLink.md
|
|
244
254
|
- docs/SearchStep.md
|
|
255
|
+
- docs/SearchStepWithQueryDetails.md
|
|
245
256
|
- docs/SetConnectionEnabledPayload.md
|
|
246
257
|
- docs/SharepointData.md
|
|
247
258
|
- docs/SharepointFileData.md
|
|
@@ -299,6 +310,8 @@ files:
|
|
|
299
310
|
- lib/ragie_ruby_sdk/models/body_update_document_file.rb
|
|
300
311
|
- lib/ragie_ruby_sdk/models/bucket_data.rb
|
|
301
312
|
- lib/ragie_ruby_sdk/models/code_interpreter_evidence.rb
|
|
313
|
+
- lib/ragie_ruby_sdk/models/code_interpreter_output.rb
|
|
314
|
+
- lib/ragie_ruby_sdk/models/code_interpreter_output_logs.rb
|
|
302
315
|
- lib/ragie_ruby_sdk/models/code_step.rb
|
|
303
316
|
- lib/ragie_ruby_sdk/models/confluence_data.rb
|
|
304
317
|
- lib/ragie_ruby_sdk/models/connection.rb
|
|
@@ -351,6 +364,8 @@ files:
|
|
|
351
364
|
- lib/ragie_ruby_sdk/models/entity_list.rb
|
|
352
365
|
- lib/ragie_ruby_sdk/models/error_message.rb
|
|
353
366
|
- lib/ragie_ruby_sdk/models/evaluated_answer_step.rb
|
|
367
|
+
- lib/ragie_ruby_sdk/models/file_search_output.rb
|
|
368
|
+
- lib/ragie_ruby_sdk/models/file_search_result.rb
|
|
354
369
|
- lib/ragie_ruby_sdk/models/final_answer.rb
|
|
355
370
|
- lib/ragie_ruby_sdk/models/final_answer_evidence_inner.rb
|
|
356
371
|
- lib/ragie_ruby_sdk/models/final_answer_steps_inner.rb
|
|
@@ -403,22 +418,29 @@ files:
|
|
|
403
418
|
- lib/ragie_ruby_sdk/models/public_intercom_connection.rb
|
|
404
419
|
- lib/ragie_ruby_sdk/models/public_s3_compatible_connection.rb
|
|
405
420
|
- lib/ragie_ruby_sdk/models/public_zendesk_connection.rb
|
|
421
|
+
- lib/ragie_ruby_sdk/models/query_details.rb
|
|
406
422
|
- lib/ragie_ruby_sdk/models/ragie_api_schema_response_usage.rb
|
|
407
423
|
- lib/ragie_ruby_sdk/models/ragie_evidence.rb
|
|
408
424
|
- lib/ragie_ruby_sdk/models/reasoning.rb
|
|
425
|
+
- lib/ragie_ruby_sdk/models/reasoning_output.rb
|
|
426
|
+
- lib/ragie_ruby_sdk/models/reasoning_summary.rb
|
|
427
|
+
- lib/ragie_ruby_sdk/models/reasoning_text.rb
|
|
409
428
|
- lib/ragie_ruby_sdk/models/request.rb
|
|
410
429
|
- lib/ragie_ruby_sdk/models/response.rb
|
|
411
430
|
- lib/ragie_ruby_sdk/models/response_content.rb
|
|
412
431
|
- lib/ragie_ruby_sdk/models/response_ok.rb
|
|
413
|
-
- lib/ragie_ruby_sdk/models/
|
|
432
|
+
- lib/ragie_ruby_sdk/models/response_output_inner.rb
|
|
433
|
+
- lib/ragie_ruby_sdk/models/response_output_message.rb
|
|
414
434
|
- lib/ragie_ruby_sdk/models/response_patchdocumentmetadata.rb
|
|
415
435
|
- lib/ragie_ruby_sdk/models/retrieval.rb
|
|
416
436
|
- lib/ragie_ruby_sdk/models/retrieve_params.rb
|
|
417
437
|
- lib/ragie_ruby_sdk/models/s3_compatible_credentials.rb
|
|
418
438
|
- lib/ragie_ruby_sdk/models/scored_chunk.rb
|
|
419
439
|
- lib/ragie_ruby_sdk/models/search.rb
|
|
440
|
+
- lib/ragie_ruby_sdk/models/search_effort.rb
|
|
420
441
|
- lib/ragie_ruby_sdk/models/search_result_link.rb
|
|
421
442
|
- lib/ragie_ruby_sdk/models/search_step.rb
|
|
443
|
+
- lib/ragie_ruby_sdk/models/search_step_with_query_details.rb
|
|
422
444
|
- lib/ragie_ruby_sdk/models/set_connection_enabled_payload.rb
|
|
423
445
|
- lib/ragie_ruby_sdk/models/sharepoint_data.rb
|
|
424
446
|
- lib/ragie_ruby_sdk/models/sharepoint_file_data.rb
|
|
@@ -473,6 +495,8 @@ files:
|
|
|
473
495
|
- spec/models/body_update_document_file_spec.rb
|
|
474
496
|
- spec/models/bucket_data_spec.rb
|
|
475
497
|
- spec/models/code_interpreter_evidence_spec.rb
|
|
498
|
+
- spec/models/code_interpreter_output_logs_spec.rb
|
|
499
|
+
- spec/models/code_interpreter_output_spec.rb
|
|
476
500
|
- spec/models/code_step_spec.rb
|
|
477
501
|
- spec/models/confluence_data_spec.rb
|
|
478
502
|
- spec/models/connection1_spec.rb
|
|
@@ -525,6 +549,8 @@ files:
|
|
|
525
549
|
- spec/models/entity_spec.rb
|
|
526
550
|
- spec/models/error_message_spec.rb
|
|
527
551
|
- spec/models/evaluated_answer_step_spec.rb
|
|
552
|
+
- spec/models/file_search_output_spec.rb
|
|
553
|
+
- spec/models/file_search_result_spec.rb
|
|
528
554
|
- spec/models/final_answer_evidence_inner_spec.rb
|
|
529
555
|
- spec/models/final_answer_spec.rb
|
|
530
556
|
- spec/models/final_answer_steps_inner_spec.rb
|
|
@@ -577,22 +603,29 @@ files:
|
|
|
577
603
|
- spec/models/public_intercom_connection_spec.rb
|
|
578
604
|
- spec/models/public_s3_compatible_connection_spec.rb
|
|
579
605
|
- spec/models/public_zendesk_connection_spec.rb
|
|
606
|
+
- spec/models/query_details_spec.rb
|
|
580
607
|
- spec/models/ragie_api_schema_response_usage_spec.rb
|
|
581
608
|
- spec/models/ragie_evidence_spec.rb
|
|
609
|
+
- spec/models/reasoning_output_spec.rb
|
|
582
610
|
- spec/models/reasoning_spec.rb
|
|
611
|
+
- spec/models/reasoning_summary_spec.rb
|
|
612
|
+
- spec/models/reasoning_text_spec.rb
|
|
583
613
|
- spec/models/request_spec.rb
|
|
584
614
|
- spec/models/response_content_spec.rb
|
|
585
615
|
- spec/models/response_ok_spec.rb
|
|
586
|
-
- spec/models/
|
|
616
|
+
- spec/models/response_output_inner_spec.rb
|
|
617
|
+
- spec/models/response_output_message_spec.rb
|
|
587
618
|
- spec/models/response_patchdocumentmetadata_spec.rb
|
|
588
619
|
- spec/models/response_spec.rb
|
|
589
620
|
- spec/models/retrieval_spec.rb
|
|
590
621
|
- spec/models/retrieve_params_spec.rb
|
|
591
622
|
- spec/models/s3_compatible_credentials_spec.rb
|
|
592
623
|
- spec/models/scored_chunk_spec.rb
|
|
624
|
+
- spec/models/search_effort_spec.rb
|
|
593
625
|
- spec/models/search_result_link_spec.rb
|
|
594
626
|
- spec/models/search_spec.rb
|
|
595
627
|
- spec/models/search_step_spec.rb
|
|
628
|
+
- spec/models/search_step_with_query_details_spec.rb
|
|
596
629
|
- spec/models/set_connection_enabled_payload_spec.rb
|
|
597
630
|
- spec/models/sharepoint_data_spec.rb
|
|
598
631
|
- spec/models/sharepoint_file_data_spec.rb
|
|
@@ -668,6 +701,8 @@ test_files:
|
|
|
668
701
|
- spec/models/body_update_document_file_spec.rb
|
|
669
702
|
- spec/models/bucket_data_spec.rb
|
|
670
703
|
- spec/models/code_interpreter_evidence_spec.rb
|
|
704
|
+
- spec/models/code_interpreter_output_logs_spec.rb
|
|
705
|
+
- spec/models/code_interpreter_output_spec.rb
|
|
671
706
|
- spec/models/code_step_spec.rb
|
|
672
707
|
- spec/models/confluence_data_spec.rb
|
|
673
708
|
- spec/models/connection1_spec.rb
|
|
@@ -720,6 +755,8 @@ test_files:
|
|
|
720
755
|
- spec/models/entity_spec.rb
|
|
721
756
|
- spec/models/error_message_spec.rb
|
|
722
757
|
- spec/models/evaluated_answer_step_spec.rb
|
|
758
|
+
- spec/models/file_search_output_spec.rb
|
|
759
|
+
- spec/models/file_search_result_spec.rb
|
|
723
760
|
- spec/models/final_answer_evidence_inner_spec.rb
|
|
724
761
|
- spec/models/final_answer_spec.rb
|
|
725
762
|
- spec/models/final_answer_steps_inner_spec.rb
|
|
@@ -772,22 +809,29 @@ test_files:
|
|
|
772
809
|
- spec/models/public_intercom_connection_spec.rb
|
|
773
810
|
- spec/models/public_s3_compatible_connection_spec.rb
|
|
774
811
|
- spec/models/public_zendesk_connection_spec.rb
|
|
812
|
+
- spec/models/query_details_spec.rb
|
|
775
813
|
- spec/models/ragie_api_schema_response_usage_spec.rb
|
|
776
814
|
- spec/models/ragie_evidence_spec.rb
|
|
815
|
+
- spec/models/reasoning_output_spec.rb
|
|
777
816
|
- spec/models/reasoning_spec.rb
|
|
817
|
+
- spec/models/reasoning_summary_spec.rb
|
|
818
|
+
- spec/models/reasoning_text_spec.rb
|
|
778
819
|
- spec/models/request_spec.rb
|
|
779
820
|
- spec/models/response_content_spec.rb
|
|
780
821
|
- spec/models/response_ok_spec.rb
|
|
781
|
-
- spec/models/
|
|
822
|
+
- spec/models/response_output_inner_spec.rb
|
|
823
|
+
- spec/models/response_output_message_spec.rb
|
|
782
824
|
- spec/models/response_patchdocumentmetadata_spec.rb
|
|
783
825
|
- spec/models/response_spec.rb
|
|
784
826
|
- spec/models/retrieval_spec.rb
|
|
785
827
|
- spec/models/retrieve_params_spec.rb
|
|
786
828
|
- spec/models/s3_compatible_credentials_spec.rb
|
|
787
829
|
- spec/models/scored_chunk_spec.rb
|
|
830
|
+
- spec/models/search_effort_spec.rb
|
|
788
831
|
- spec/models/search_result_link_spec.rb
|
|
789
832
|
- spec/models/search_spec.rb
|
|
790
833
|
- spec/models/search_step_spec.rb
|
|
834
|
+
- spec/models/search_step_with_query_details_spec.rb
|
|
791
835
|
- spec/models/set_connection_enabled_payload_spec.rb
|
|
792
836
|
- spec/models/sharepoint_data_spec.rb
|
|
793
837
|
- spec/models/sharepoint_file_data_spec.rb
|