feat: add Typecast TTS provider#303
Open
jaebong-human wants to merge 1 commit into
Open
Conversation
Add Typecast as a new TTS provider using the typecast-python SDK. Follows the same pattern as ElevenLabs integration. - Add TypecastTTS provider class (tts/providers/typecast.py) - Register 'typecast' in TTSProviderFactory - Add TYPECAST_API_KEY to config - Add typecast voices/model defaults to conversation_config.yaml - Update CLI help text to include typecast - Support typecast_key in REST API endpoint Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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.
Summary
typecast-pythonSDKChanges
podcastfy/tts/providers/typecast.py— newTypecastTTSprovider classpodcastfy/tts/factory.py— register'typecast'inTTSProviderFactorypodcastfy/utils/config.py— addTYPECAST_API_KEYenv var supportpodcastfy/conversation_config.yaml— add typecast default voices/model configpodcastfy/client.py— update CLI help text to include typecastpodcastfy/api/fast_app.py— supporttypecast_keyin REST API endpointUsage
podcastfy --url "https://example.com" --tts-model typecastTest plan
TYPECAST_API_KEYin.envpoetry run python -c "from podcastfy.text_to_speech import TextToSpeech; tts = TextToSpeech(model='typecast'); tts.convert_to_speech('<Person1>Hello.</Person1><Person2>Hi!</Person2>', 'out.mp3')"out.mp3is generated successfully🤖 Generated with Claude Code