feat!: regenerate Python SDK (TTS audio + voices); hoist errors/types to package root#8
Merged
Merged
Conversation
eb230e8 to
2c32ddc
Compare
Closed
2c32ddc to
ebcf99d
Compare
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.
Regenerates the Python SDK from the current API spec. This PR is only the TTS regeneration — the realtime connect layer and the agent namespace that appeared on earlier revisions of this branch are intentionally out of scope here and are tracked separately.
Generated surface
client.tts(and theAsyncSpeechifyequivalent) exposes two sub-clients:client.tts.audiospeech(*, input, voice_id, audio_format=, language=, model=, options=, request_options=) -> GetSpeechResponsestream(*, accept, input, voice_id, language=, model=, options=, request_options=) -> Iterator[bytes]client.tts.voiceslist(*, request_options=) -> List[GetVoice]create(*, name, gender, sample, consent, locale=, avatar=, request_options=) -> CreatedVoicedelete(id, *, request_options=) -> Nonedownload_sample(id, *, request_options=) -> Iterator[bytes]Breaking changes (
feat!)Relative to
master:errorsandtypesmoved to the package root.speechify.tts.errors->speechify.errors, andspeechify.tts.types->speechify.types. Consumer imports must be updated.client.ttspreviously also exposedauth,agents,tools,conversations,knowledge_bases,memories,phone_numbers,sip_trunks,outbound_calls, andworkspaces. The regenerated client exposes onlyaudioandvoices.Verification
compileandtestboth pass.Follow-ups
tts->audio(client.audio.*) is under discussion and is not part of this PR.