MyShell
⌘Ctrlk
MyShell
  • MyShell에 대하여
  • AI 에이전트 탐색하기
  • AI 에이전트 제작하기
    • Classic 모드
    • Pro Config 모드
      • 핵심 개념
      • 튜토리얼
      • 기본
      • 고급
      • 도구
      • Example
      • API 참조
        • 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 모드
  • SHELL 런치패드
  • 토큰 경제학
  • 오픈소스 AI 프레임워크/SDK
  • 링크
Powered by GitBook
For the complete documentation index, see llms.txt. This page is also available as Markdown.
  1. 한국어
  2. AI 에이전트 제작하기
  3. Pro Config 모드
  4. API 참조
  5. Module
  6. AnyWidget Module

Melo TTS

Widget

LogoMyShell Art | AI Image Generator for Stunning, High-Quality Creationsapp.myshell.ai

Config

Melo TTS

Example

PreviousCode Runner WidgetNextAge Transformation
  • 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"
      }
    }
  }
}