Academy → Using HermesOfficial documentation · clear explanation

Voice & TTS

Voice & TTS

Intermediate31 minutes3 questions2026-08-09
The idea in one minute

Start with meaning, then move to detail.

This lesson explains Voice & TTS as part of extending Hermes and connecting external tools. You will learn what it does, when it matters, and the smallest safe test that proves it works.

If you are new

If you are new, do not memorize names. Focus on three questions: what problem does this solve, what access does it need, and how can you verify the result?

For hands-on use

For practice, inspect the first example, identify its effects, run it on test data, and compare the result with the source claim.

For specialists

For advanced readers, inspect Text-to-Speech, Platform Delivery, Configuration, then verify failure modes and version compatibility.

What do you need first?

Complete installation and one successful task before adding new capabilities.

What will you know?

A clear outcome before you read.

  • Understand Voice & TTS without assumed prior knowledge.
  • Separate the source description from what still needs testing in your environment.
  • Read the first command and identify its inputs and outputs before copying it.
Lesson terms

Short definitions before the details.

Provider
The service that runs or provides access and authentication to a model.
Official page description

Text-to-speech and voice message transcription across all platforms

Topic map

What does the source say, and in what order?

  1. 01
    Text-to-Speech

    Start here to understand the core idea or structure.

  2. 02
    Platform Delivery

    Read this after the foundation, then connect it to the previous step.

  3. 03
    Configuration

    Read this after the foundation, then connect it to the previous step.

  4. 04
    Gemini Persona Prompts

    Read this after the foundation, then connect it to the previous step.

  5. 05
    Audio Tags (Gemini, xAI)

    Read this after the foundation, then connect it to the previous step.

  6. 06
    Input length limits

    Read this after the foundation, then connect it to the previous step.

  7. 07
    Telegram Voice Bubbles & ffmpeg

    Read this after the foundation, then connect it to the previous step.

  8. 08
    xAI Custom Voices (voice cloning)

    Read this after the foundation, then connect it to the previous step.

  9. 09
    Piper (local, 44 languages)

    Read this after the foundation, then connect it to the previous step.

  10. 10
    Custom command providers

    Finish here to verify the result and special cases.

Examples from the official page

Copy only after you understand the effect.

# In ~/.hermes/config.yaml tts: provider: "edge" # "edge" | "elevenlabs" | "openai" | "minimax" | "mistral" | "gemini" | "xai" | "deepinfra" | "neutts" | "kittentts" | "piper" speed: 1.0 # Global speed multiplier (provider-specific settings override this) edge: voice: "en-US-AriaNeural" # 322 voices, 74 languages speed: 1.0 # Converted to rate percentage (+/-%) elevenlabs: voice_id: "pNInz6obpgDQGcFmaJgB" # Adam model_id: "eleven_multilingual_v2" openai: model: "gpt-4o-mini-tts" voice: "alloy" #
tts: provider: gemini gemini: voice: Algieba persona_prompt_file: ~/.hermes/tts/butler-voice.md
tts: provider: gemini gemini: model: gemini-3.1-flash-tts-preview audio_tags: true xai: auto_speech_tags: true
Try it now

Read the first command and identify its inputs and outputs before copying it.

Match every command to your installed Hermes version, review the files and accounts it can reach, and use non-sensitive data for the first test. If this explanation differs from the source, the official source wins.

Knowledge check

Three decisions before completion.

1. What is the source of truth when “Voice & TTS” changes?
2. What is the best way to apply this lesson?
3. What should happen before a step can modify files or an external account?