-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RTVI 0.2.0 #5
Merged
Merged
RTVI 0.2.0 #5
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# 0.2.0 | ||
|
||
- Renamed: | ||
- `VoiceClient` to `RTVIClient` | ||
- `VoiceClientOptions` to `RTVIClientOptions` | ||
- `VoiceEventCallbacks` to `RTVIEventCallbacks` | ||
- `VoiceError` to `RTVIError` | ||
- `VoiceException` to `RTVIException` | ||
- `VoiceClientHelper` to `RTVIClientHelper` | ||
- `RegisteredVoiceClient` to `RegisteredRTVIClient` | ||
- `FailedToFetchAuthBundle` to `HttpError` | ||
- `RTVIClient()` constructor parameter changes | ||
- `options` is now mandatory | ||
- `baseUrl` has been moved to `options.params.baseUrl` | ||
- `baseUrl` and `endpoints` are now separate, and the endpoint names are appended to the `baseUrl` | ||
- Moved `RTVIClientOptions.config` to `RTVIClientOptions.params.config` | ||
- Moved `RTVIClientOptions.customHeaders` to `RTVIClientOptions.params.headers` | ||
- Moved `RTVIClientOptions.customBodyParams` to `RTVIClientOptions.params.requestData` | ||
- `TransportState` changes | ||
- Removed `Idle` state, replaced with `Disconnected` | ||
- Added `Disconnecting` state | ||
- Added callbacks | ||
- `onBotLLMText()` | ||
- `onBotTTSText()` | ||
- `onStorageItemStored()` |
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
11 changes: 11 additions & 0 deletions
11
rtvi-client-android/src/main/java/ai/rtvi/client/Legacy.kt
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,11 @@ | ||
package ai.rtvi.client | ||
|
||
|
||
@Deprecated("VoiceClient is renamed to RTVIClient") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Cool, I think I had added a comment somewhere else if we should add these alias. |
||
typealias VoiceClient = RTVIClient | ||
|
||
@Deprecated("VoiceClientOptions is renamed to RTVIClientOptions") | ||
typealias VoiceClientOptions = RTVIClientOptions | ||
|
||
@Deprecated("VoiceEventCallbacks is renamed to RTVIEventCallbacks") | ||
typealias VoiceEventCallbacks = RTVIEventCallbacks |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's probably some stuff missing from this changelog, I'll go through one more time and check but if you notice anything please let me know!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, I still need to add the version number in the initial request.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, we were really missing a changelog file. I will add one on iOS as well.