-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add new KnowledgeBase api code to SDK * Add changelog entry * Resolve dependabot alerts * Regenerate SDK after version and openapi spec file updates * Changes made to openapi spec * Comment out invalid method tests on all model test files * Update openapi spec in sdk * Resolve diff issues with commented out test * Skip invalid properties test
- Loading branch information
Showing
92 changed files
with
1,686 additions
and
473 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,4 @@ build/ | |
|
||
.DS_Store | ||
git_push.sh | ||
/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Freeclimb::CompletionRequest | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **query** | **String** | Question to ask the Knowledge Base | | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'freeclimb' | ||
|
||
instance = Freeclimb::CompletionRequest.new( | ||
query: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Freeclimb::CompletionResult | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **response** | **String** | The generative response from the KnowledgeBase | | | ||
| **status** | **String** | Completion result status. Possible values: success, no_context | | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'freeclimb' | ||
|
||
instance = Freeclimb::CompletionResult.new( | ||
response: null, | ||
status: null | ||
) | ||
``` | ||
|
Oops, something went wrong.