LiveAvatar:面对面 AI 视频对话 - Openclaw 技能

作者:互联网

2026-03-24

AI教程

什么是 LiveAvatar?

LiveAvatar 与 Openclaw 技能的集成,为 AI 交互带来了类人化的维度。通过结合实时视频合成与语音识别,用户可以与智能体进行自然的面对面交谈。此技能利用 LiveAvatar 平台处理转录和对口型,确保用户语音与智能体回答之间的流畅衔接。

将其集成到您的工作流程中,可以让您超越文本界面的局限。化身会根据用户输入动态做出反应,提供更具参与感和共情力的体验。作为 Openclaw 技能生态系统的一个亮点,该工具通过先进的多模态能力缩短了数字智能与人类存在感之间的距离。

下载入口:https://github.com/openclaw/skills/tree/main/skills/ennno/liveavatar

安装与下载

1. ClawHub CLI

从源直接安装技能的最快方式。

npx clawhub@latest install liveavatar

2. 手动安装

将技能文件夹复制到以下位置之一

全局模式 ~/.openclaw/skills/ 工作区 /skills/

优先级:工作区 > 本地 > 内置

3. 提示词安装

将此提示词复制到 OpenClaw 即可自动安装。

请帮我使用 Clawhub 安装 liveavatar。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。

LiveAvatar 应用场景

  • 构建交互式 AI 驱动的教育平台,学生可以与虚拟导师交谈。
  • 为陪伴或无障碍支持创建个性化的虚拟助手。
  • 通过具有亲和力且富有同理心的视觉形象增强客户服务界面,提升品牌参与度。
  • 在现场演示和陈述中展示多模态 Openclaw 技能的强大功能。
LiveAvatar 工作原理
  1. 用户通过 LiveAvatar 界面上的浏览器麦克风提供语音输入。
  2. 系统利用 LiveAvatar 技术将语音实时转录为文本。
  3. 转录的文本被发送至本地 OpenClaw 网关(运行于 18789 端口)。
  4. AI 智能体处理输入并生成文本响应。
  5. LiveAvatar 将响应合成为语音,并以自然的对口型和表情动画化视频化身。

LiveAvatar 配置指南

要在 Openclaw 技能框架内使用此功能,首先从 LiveAvatar 控制面板获取免费的 API 密钥。然后,设置您的环境变量:

export LIVEAVATAR_API_KEY=您的API密钥

或者,将密钥添加到本地配置文件 ~/.openclaw/openclaw.json 中。配置完成后,您可以通过智能体调用以下命令启动界面:

/liveavatar

确保您的 OpenClaw 网关正在运行,然后在现代浏览器中访问 http://localhost:3001 以开始会话。

LiveAvatar 数据架构与分类体系

该技能管理配置和实时数据流以维持化身连接。其构成包括:

组件 详情
凭据 存储在环境变量或 openclaw.json 中的 LIVEAVATAR_API_KEY
本地连接 通过 localhost:18789 连接到 OpenClaw 网关
前端 通过 node/npx 托管在 3001 端口的本地服务器
化身资源 通过 LiveAvatar API 提供的元数据和视频流
name: liveavatar
description: Talk face-to-face with your OpenClaw agent using a real-time video avatar powered by LiveAvatar
user-invocable: true
metadata: {"openclaw":{"emoji":"??","requires":{"env":["LIVEAVATAR_API_KEY"],"bins":["node","npm"]},"install":[{"id":"node","kind":"node","package":"openclaw-liveavatar","bins":["openclaw-liveavatar"],"label":"Install LiveAvatar (npm)"}]}}

OpenClaw LiveAvatar

Give your OpenClaw agent a face and voice! This skill launches a real-time AI avatar that you can talk to naturally using your microphone. The avatar listens to you, sends your speech to your OpenClaw agent, and speaks the response back with lip-synced video.

Powered by LiveAvatar - real-time AI avatar technology.

Setup

1. Get Your API Key (Free)

  1. Go to app.liveavatar.com
  2. Create a free account
  3. Copy your API key from the dashboard

2. Set Your API Key

export LIVEAVATAR_API_KEY=your_api_key_here

Or add to ~/.openclaw/openclaw.json:

{
  "skills": {
    "entries": {
      "liveavatar": {
        "env": {
          "LIVEAVATAR_API_KEY": "your_api_key_here"
        }
      }
    }
  }
}

Usage

Run /liveavatar to start the video avatar interface.

When the user runs this command:

  1. Check if LIVEAVATAR_API_KEY is set. If not, tell them:

    You need a LiveAvatar API key. Get one free at https://app.liveavatar.com Then set it: export LIVEAVATAR_API_KEY=your_key

  2. Launch the interface:

    npx openclaw-liveavatar
    
  3. Tell the user:

    Your LiveAvatar interface is starting at http://localhost:3001 It will connect automatically to your OpenClaw Gateway.

    Tips:

    • Allow microphone access when prompted
    • Click the green mic button to speak
    • The avatar will respond with your agent's answers
    • Click the X button to end the session

How It Works

You speak → Avatar transcribes → OpenClaw processes → Avatar speaks response
  1. Voice Input: Speak into your microphone
  2. Transcription: LiveAvatar converts speech to text
  3. Agent Processing: Text sent to OpenClaw Gateway (port 18789)
  4. Response: Agent response returned
  5. Avatar Speech: Avatar speaks with natural lip-sync

Features

  • Real-time video avatar with expressions
  • Voice-to-voice conversations
  • Text chat fallback option
  • Smart TTS summarization for long responses
  • Echo cancellation (won't respond to itself)
  • Multiple avatar choices

Requirements

  • OpenClaw Gateway running (openclaw gateway)
  • LiveAvatar API key
  • Modern browser with microphone
  • Node.js 18+

Troubleshooting

"OpenClaw Disconnected"

openclaw gateway

"No avatars available"

  • Check LIVEAVATAR_API_KEY is set correctly

Voice not working

  • Allow microphone access in browser
  • Check system audio settings
  • LiveAvatar - Real-time avatar platform
  • OpenClaw - Your personal AI assistant
  • GitHub - Source code