MyShell
Ctrlk
  • About MyShell
  • Explore AI Agents
  • Create AI Agents
    • Classic Mode
    • Pro Config Mode
      • Core Concepts
      • Tutorial
      • Basic
      • Advanced
      • Tools
      • Example
      • API Reference
        • Atomic State
        • Transition
        • Automata
        • Context
        • Module
          • AnyWidget Module
            • Prompt Widget
            • LLM Widget
            • TTS Widget
            • Code Runner Widget
            • Melo TTS
            • Age Transformation
            • ChatImg
            • GIF Generation
            • Music Generation
          • LLM Module
          • LLM Function Module
          • TTS Module
          • Google Search Module
        • Widgets
      • FAQs
      • Changelog
    • ShellAgent Mode
  • Shell Launchpad
  • Tokenomics
  • Open-source AI Framework/SDK
  • Links
Powered by GitBook
On this page
  1. Create AI Agents
  2. Pro Config Mode
  3. API Reference
  4. Module
  5. AnyWidget Module

Melo TTS

Widget

LogoMyShell MeloTTS | MyShell Workshopapp.myshell.ai

Config

Melo TTS

Example

PreviousCode Runner WidgetNextAge Transformation

Last updated 11 months ago

  • Widget
  • Config
  • Example
{
  "id": "test",
  "initial": "home_state",
  "states": {
    "home_state": {
      "inputs": {
        "input_message": {
          "type": "text",
          "user_input": true
        }
      },
      "tasks": [
        {
          "name": "any_module_test_task",
          "module_type": "AnyWidgetModule",
          "module_config": {
            "widget_id": "1745097608856756779",
            "language": "en_us",
            "speed": 1,
            "text": "{{input_message}}",
            "output_name": "result"
          }
        }
      ],
      "render": {
        "text": "My Voice",
        "audio": "{{result.file_url}}",
        "buttons": [
          {
            "content": "Listen Again",
            "description": "",
            "on_click": "listen"
          }
        ]
      },
      "transitions": {
        "listen": "home_state"
      }
    }
  }
}