fix(aws-stt): support aws-sdk-transcribe-streaming >=0.11.0 - #7074
Closed
chakshu-dhannawat wants to merge 1 commit into
Closed
fix(aws-stt): support aws-sdk-transcribe-streaming >=0.11.0#7074chakshu-dhannawat wants to merge 1 commit into
chakshu-dhannawat wants to merge 1 commit into
Conversation
chakshu-dhannawat
force-pushed
the
fix-aws-stt-0.11
branch
2 times, most recently
from
September 1, 2026 01:08
57b2318 to
2d677aa
Compare
chakshu-dhannawat
force-pushed
the
fix-aws-stt-0.11
branch
from
September 1, 2026 01:20
2d677aa to
af62cd9
Compare
chakshu-dhannawat
force-pushed
the
fix-aws-stt-0.11
branch
from
September 1, 2026 01:26
af62cd9 to
8f9d37f
Compare
Contributor
|
closing in favor of #7094 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
aws-sdk-transcribe-streaming0.11.0 renamed the client/config exports toAsyncTranscribeStreamingClient/AsyncTranscribeStreamingConfig, stopped installingawscrt, and requiresawait Config.resolve(...)instead of direct construction.\n\nThis change makes the AWS STT plugin compatible with both the pre-0.11 and 0.11+ APIs:\n- Try the new async names first, falling back to the legacyTranscribeStreamingClient/Config(and the 0.10configalias).\n- Fall back fromAWSCRTHTTPClienttoAIOHTTPClientwhenawscrtis not installed.\n- UseConfig.resolve(...)when available, otherwise construct directly.\n- Passtransport=to the config so the same HTTP client is reused and closed cleanly inSpeechStream.aclose().\n\nVerifiedtests/test_plugin_aws_stt.pypasses withaws-sdk-transcribe-streaming==0.7.0and0.11.0.\n\nFixes #7072