Files
openclaw/docs/zh-CN/plugins/voice-call.md
Josh Palmer a3ec2d0734 Docs: update zh-CN translations and pipeline
What:
- update zh-CN glossary, TM, and translator prompt
- regenerate zh-CN docs and apply targeted fixes
- add zh-CN AGENTS pipeline guidance

Why:
- address terminology/spacing feedback from #6995

Tests:
- pnpm build && pnpm check && pnpm test
2026-02-03 13:23:00 -08:00

6.1 KiB
Raw Permalink Blame History

read_when, summary, title, x-i18n
read_when summary title x-i18n
你想从 OpenClaw 发起出站语音通话
你正在配置或开发 voice-call 插件
Voice Call 插件:通过 Twilio/Telnyx/Plivo 进行出站 + 入站通话(插件安装 + 配置 + CLI Voice Call 插件
generated_at model provider source_hash source_path workflow
2026-02-03T07:53:40Z claude-opus-4-5 pi d731c63bf52781cc49262db550d0507d7fc33e5e7ce5d87efaf5d44aedcafef7 plugins/voice-call.md 15

Voice Call插件

通过插件为 OpenClaw 提供语音通话。支持出站通知和带有入站策略的多轮对话。

当前提供商:

  • twilioProgrammable Voice + Media Streams
  • telnyxCall Control v2
  • plivoVoice API + XML transfer + GetInput speech
  • mock(开发/无网络)

快速心智模型:

  • 安装插件
  • 重启 Gateway 网关
  • plugins.entries.voice-call.config 下配置
  • 使用 openclaw voicecall ...voice_call 工具

运行位置(本地 vs 远程)

Voice Call 插件运行在 Gateway 网关进程内部

如果你使用远程 Gateway 网关,在运行 Gateway 网关的机器上安装/配置插件,然后重启 Gateway 网关以加载它。

安装

选项 A从 npm 安装(推荐)

openclaw plugins install @openclaw/voice-call

之后重启 Gateway 网关。

选项 B从本地文件夹安装开发不复制

openclaw plugins install ./extensions/voice-call
cd ./extensions/voice-call && pnpm install

之后重启 Gateway 网关。

配置

plugins.entries.voice-call.config 下设置配置:

{
  plugins: {
    entries: {
      "voice-call": {
        enabled: true,
        config: {
          provider: "twilio", // 或 "telnyx" | "plivo" | "mock"
          fromNumber: "+15550001234",
          toNumber: "+15550005678",

          twilio: {
            accountSid: "ACxxxxxxxx",
            authToken: "...",
          },

          plivo: {
            authId: "MAxxxxxxxxxxxxxxxxxxxx",
            authToken: "...",
          },

          // Webhook 服务器
          serve: {
            port: 3334,
            path: "/voice/webhook",
          },

          // 公开暴露(选一个)
          // publicUrl: "https://example.ngrok.app/voice/webhook",
          // tunnel: { provider: "ngrok" },
          // tailscale: { mode: "funnel", path: "/voice/webhook" }

          outbound: {
            defaultMode: "notify", // notify | conversation
          },

          streaming: {
            enabled: true,
            streamPath: "/voice/stream",
          },
        },
      },
    },
  },
}

注意事项:

  • Twilio/Telnyx 需要可公开访问的 webhook URL。
  • Plivo 需要可公开访问的 webhook URL。
  • mock 是本地开发提供商(无网络调用)。
  • skipSignatureVerification 仅用于本地测试。
  • 如果你使用 ngrok 免费版,将 publicUrl 设置为确切的 ngrok URL签名验证始终强制执行。
  • tunnel.allowNgrokFreeTierLoopbackBypass: true 允许带有无效签名的 Twilio webhooks仅当 tunnel.provider="ngrok"serve.bind 是 loopbackngrok 本地代理)时。仅用于本地开发。
  • Ngrok 免费版 URL 可能会更改或添加中间页面行为;如果 publicUrl 漂移Twilio 签名将失败。对于生产环境,优先使用稳定域名或 Tailscale funnel。

通话的 TTS

Voice Call 使用核心 messages.tts 配置OpenAI 或 ElevenLabs进行通话中的流式语音。你可以在插件配置下使用相同的结构覆盖它——它会与 messages.tts 深度合并。

{
  tts: {
    provider: "elevenlabs",
    elevenlabs: {
      voiceId: "pMsXgVXv3BLzUgSXRplE",
      modelId: "eleven_multilingual_v2",
    },
  },
}

注意事项:

  • 语音通话忽略 Edge TTS(电话音频需要 PCMEdge 输出不可靠)。
  • 当启用 Twilio 媒体流时使用核心 TTS否则通话回退到提供商原生语音。

更多示例

仅使用核心 TTS无覆盖

{
  messages: {
    tts: {
      provider: "openai",
      openai: { voice: "alloy" },
    },
  },
}

仅为通话覆盖为 ElevenLabs其他地方保持核心默认

{
  plugins: {
    entries: {
      "voice-call": {
        config: {
          tts: {
            provider: "elevenlabs",
            elevenlabs: {
              apiKey: "elevenlabs_key",
              voiceId: "pMsXgVXv3BLzUgSXRplE",
              modelId: "eleven_multilingual_v2",
            },
          },
        },
      },
    },
  },
}

仅为通话覆盖 OpenAI 模型(深度合并示例):

{
  plugins: {
    entries: {
      "voice-call": {
        config: {
          tts: {
            openai: {
              model: "gpt-4o-mini-tts",
              voice: "marin",
            },
          },
        },
      },
    },
  },
}

入站通话

入站策略默认为 disabled。要启用入站通话,设置:

{
  inboundPolicy: "allowlist",
  allowFrom: ["+15550001234"],
  inboundGreeting: "Hello! How can I help?",
}

自动响应使用智能体系统。通过以下方式调整:

  • responseModel
  • responseSystemPrompt
  • responseTimeoutMs

CLI

openclaw voicecall call --to "+15555550123" --message "Hello from OpenClaw"
openclaw voicecall continue --call-id <id> --message "Any questions?"
openclaw voicecall speak --call-id <id> --message "One moment"
openclaw voicecall end --call-id <id>
openclaw voicecall status --call-id <id>
openclaw voicecall tail
openclaw voicecall expose --mode funnel

智能体工具

工具名称:voice_call

操作:

  • initiate_callmessage、to?、mode?
  • continue_callcallId、message
  • speak_to_usercallId、message
  • end_callcallId
  • get_statuscallId

此仓库在 skills/voice-call/SKILL.md 提供了配套的 skill 文档。

Gateway 网关 RPC

  • voicecall.initiateto?messagemode?
  • voicecall.continuecallIdmessage
  • voicecall.speakcallIdmessage
  • voicecall.endcallId
  • voicecall.statuscallId