
Real-time AI video chat that routes through your OpenClaw agent. Voice in, voice out, full agent context — like a video call with a knowledgeable assistant.
1. STT — Your voice goes to Groq Whisper for fast, accurate speech-to-text 2. Agent — The text is sent to your OpenClaw agent via chatCompletions API 3. TTS — The agent's response is synthesized with edge-tts (Microsoft's cloud TTS) 4. Loop — You hear the response and continue the conversation naturally
# Install dependencies pip install groq-whisper edge-tts openai # Configure OpenClaw agent endpoint export OPENCLAW_ENDPOINT="http://localhost:18789" export GROQ_API_KEY="your-groq-key" # Launch video chat videochat-withme start --agent your-agent-name
| Pros | Cons |
|---|---|
| Fully hands-free interaction | Requires stable internet for real-time TTS |
| Agent has full conversation history | Groq Whisper needs explicit audio permission |
| Supports multiple voice options | Latency depends on Groq response time |
videochat-withme is what ambient AI computing looks like. Your OpenClaw agent is already a powerful reasoning engine — now you can talk to it like a colleague. Worth installing if you want your agent to be genuinely accessible.