Replies: 3 comments 1 reply
|
@davit312 The shell completions are also updated. fabric --help | grep -i tts
--voice= TTS voice name for supported models (e.g., Kore, Charon, Puck) (default: Kore)
--list-gemini-voices List all available Gemini TTS voicesAnd hitting [TAB] after putting in
And here is the list of voices: There's documentation here: https://github.com/danielmiessler/Fabric/blob/main/docs/Gemini-TTS.md And there, you can find the information about adding a stanza to your Fabric config file to choose a default voice. |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Uh oh!
There was an error while loading. Please reload this page.
I am trying to synthesize audio from text using gemin tts model
fabric -m gemini-2.5-flash-preview-tts \ 'Read this in friendly tone: How is your day going?' -o result.wavand got this response
googleapi: Error 400: The requested combination of response modalities (TEXT) is not supported by the model. models/gemini-2.5-flash-preview-tts accepts the following combination of response modalities: * AUDIOWould be great if fabric supports audio responses.
All reactions