惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

罗磊的独立博客
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Google DeepMind News
Google DeepMind News
C
Check Point Blog
Last Week in AI
Last Week in AI
F
Fortinet All Blogs
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Help Net Security
GbyAI
GbyAI
云风的 BLOG
云风的 BLOG

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
feat(google): add realtime voice provider · openclaw/open...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -132,6 +132,7 @@ Choose your preferred auth method and follow the setup steps.

132132

| Image generation | Yes |

133133

| Music generation | Yes |

134134

| Text-to-speech | Yes |

135+

| Realtime voice | Yes (Google Live API) |

135136

| Image understanding | Yes |

136137

| Audio transcription | Yes |

137138

| Video understanding | Yes |

@@ -281,6 +282,63 @@ A Google Cloud Console API key restricted to the Gemini API is valid for this

281282

provider. This is not the separate Cloud Text-to-Speech API path.

282283

</Note>

283284285+

## Realtime voice

286+287+

The bundled `google` plugin registers a realtime voice provider backed by the

288+

Gemini Live API for backend audio bridges such as Voice Call and Google Meet.

289+290+

| Setting | Config path | Default |

291+

| --------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |

292+

| Model | `plugins.entries.voice-call.config.realtime.providers.google.model` | `gemini-2.5-flash-native-audio-preview-12-2025` |

293+

| Voice | `...google.voice` | `Kore` |

294+

| Temperature | `...google.temperature` | (unset) |

295+

| VAD start sensitivity | `...google.startSensitivity` | (unset) |

296+

| VAD end sensitivity | `...google.endSensitivity` | (unset) |

297+

| Silence duration | `...google.silenceDurationMs` | (unset) |

298+

| API key | `...google.apiKey` | Falls back to `models.providers.google.apiKey`, `GEMINI_API_KEY`, or `GOOGLE_API_KEY` |

299+300+

Example Voice Call realtime config:

301+302+

```json5

303+

{

304+

plugins: {

305+

entries: {

306+

"voice-call": {

307+

enabled: true,

308+

config: {

309+

realtime: {

310+

enabled: true,

311+

provider: "google",

312+

providers: {

313+

google: {

314+

model: "gemini-2.5-flash-native-audio-preview-12-2025",

315+

voice: "Kore",

316+

},

317+

},

318+

},

319+

},

320+

},

321+

},

322+

},

323+

}

324+

```

325+326+

<Note>

327+

Google Live API uses bidirectional audio and function calling over a WebSocket.

328+

OpenClaw adapts telephony/Meet bridge audio to Gemini's PCM Live API stream and

329+

keeps tool calls on the shared realtime voice contract. Leave `temperature`

330+

unset unless you need sampling changes; OpenClaw omits non-positive values

331+

because Google Live can return transcripts without audio for `temperature: 0`.

332+

Gemini API transcription is enabled without `languageCodes`; the current Google

333+

SDK rejects language-code hints on this API path.

334+

</Note>

335+336+

<Note>

337+

Control UI Talk browser sessions still require a realtime voice provider with a

338+

browser WebRTC session implementation. Today that path is OpenAI Realtime; the

339+

Google provider is for backend realtime bridges.

340+

</Note>

341+284342

## Advanced configuration

285343286344

<AccordionGroup>