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

推荐订阅源

N
Netflix TechBlog - Medium
IT之家
IT之家
博客园_首页
Hugging Face - Blog
Hugging Face - Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
小众软件
小众软件
博客园 - 叶小钗
WordPress大学
WordPress大学
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理

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
fix(ui): handle Google Live binary talk frames · openclaw...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -74,6 +74,7 @@ export class GoogleLiveRealtimeTalkTransport implements RealtimeTalkTransport {

7474

private playhead = 0;

7575

private closed = false;

7676

private pendingCalls = new Map<string, PendingFunctionCall>();

77+

private readonly sources = new Set<AudioBufferSourceNode>();

77787879

constructor(

7980

private readonly session: RealtimeTalkJsonPcmWebSocketSessionResult,

@@ -93,11 +94,17 @@ export class GoogleLiveRealtimeTalkTransport implements RealtimeTalkTransport {

9394

this.inputContext = new AudioContext({ sampleRate: this.session.audio.inputSampleRateHz });

9495

this.outputContext = new AudioContext({ sampleRate: this.session.audio.outputSampleRateHz });

9596

this.ws = new WebSocket(wsUrl);

97+

this.ws.binaryType = "arraybuffer";

9698

this.ws.addEventListener("open", () => {

99+

if (this.closed) {

100+

return;

101+

}

97102

this.send(this.session.initialMessage ?? { setup: {} });

98103

this.startMicrophonePump();

99104

});

100-

this.ws.addEventListener("message", (event) => this.handleMessage(event.data));

105+

this.ws.addEventListener("message", (event) => {

106+

void this.handleMessage(event.data);

107+

});

101108

this.ws.addEventListener("close", () => {

102109

if (!this.closed) {

103110

this.ctx.callbacks.onStatus?.("error", "Realtime connection closed");

@@ -119,6 +126,7 @@ export class GoogleLiveRealtimeTalkTransport implements RealtimeTalkTransport {

119126

this.inputSource = null;

120127

this.media?.getTracks().forEach((track) => track.stop());

121128

this.media = null;

129+

this.stopOutput();

122130

void this.inputContext?.close();

123131

this.inputContext = null;

124132

void this.outputContext?.close();

@@ -128,7 +136,7 @@ export class GoogleLiveRealtimeTalkTransport implements RealtimeTalkTransport {

128136

}

129137130138

private startMicrophonePump(): void {

131-

if (!this.media || !this.inputContext) {

139+

if (this.closed || !this.media || !this.inputContext) {

132140

return;

133141

}

134142

this.inputSource = this.inputContext.createMediaStreamSource(this.media);

@@ -152,24 +160,30 @@ export class GoogleLiveRealtimeTalkTransport implements RealtimeTalkTransport {

152160

}

153161154162

private send(message: unknown): void {

155-

if (this.ws?.readyState === WebSocket.OPEN) {

163+

if (!this.closed && this.ws?.readyState === WebSocket.OPEN) {

156164

this.ws.send(JSON.stringify(message));

157165

}

158166

}

159167160-

private handleMessage(data: unknown): void {

168+

private async handleMessage(data: unknown): Promise<void> {

169+

if (this.closed) {

170+

return;

171+

}

161172

let message: GoogleLiveMessage;

162173

try {

163-

message = JSON.parse(String(data)) as GoogleLiveMessage;

174+

message = JSON.parse(await decodeGoogleLiveMessageData(data)) as GoogleLiveMessage;

164175

} catch {

165176

return;

166177

}

178+

if (this.closed) {

179+

return;

180+

}

167181

if (message.setupComplete) {

168182

this.ctx.callbacks.onStatus?.("listening");

169183

}

170184

const content = message.serverContent;

171185

if (content?.interrupted) {

172-

this.playhead = this.outputContext?.currentTime ?? 0;

186+

this.stopOutput();

173187

}

174188

if (content?.inputTranscription?.text) {

175189

this.ctx.callbacks.onTranscript?.({

@@ -216,13 +230,25 @@ export class GoogleLiveRealtimeTalkTransport implements RealtimeTalkTransport {

216230

);

217231

buffer.getChannelData(0).set(samples);

218232

const source = this.outputContext.createBufferSource();

233+

this.sources.add(source);

234+

source.addEventListener("ended", () => this.sources.delete(source));

219235

source.buffer = buffer;

220236

source.connect(this.outputContext.destination);

221237

const startAt = Math.max(this.outputContext.currentTime, this.playhead);

222238

source.start(startAt);

223239

this.playhead = startAt + buffer.duration;

224240

}

225241242+

private stopOutput(): void {

243+

for (const source of this.sources) {

244+

try {

245+

source.stop();

246+

} catch {}

247+

}

248+

this.sources.clear();

249+

this.playhead = this.outputContext?.currentTime ?? 0;

250+

}

251+226252

private async handleToolCall(call: {

227253

id?: string;

228254

name?: string;

@@ -238,13 +264,31 @@ export class GoogleLiveRealtimeTalkTransport implements RealtimeTalkTransport {

238264

return;

239265

}

240266

await submitRealtimeTalkConsult({

241-

ctx: this.ctx,

267+

ctx: this.createActiveContext(),

242268

callId,

243269

args: call.args ?? {},

244270

submit: (toolCallId, result) => this.submitToolResult(toolCallId, result),

245271

});

246272

}

247273274+

private createActiveContext(): RealtimeTalkTransportContext {

275+

return {

276+

...this.ctx,

277+

callbacks: {

278+

onStatus: (status, detail) => {

279+

if (!this.closed) {

280+

this.ctx.callbacks.onStatus?.(status, detail);

281+

}

282+

},

283+

onTranscript: (entry) => {

284+

if (!this.closed) {

285+

this.ctx.callbacks.onTranscript?.(entry);

286+

}

287+

},

288+

},

289+

};

290+

}

291+248292

private submitToolResult(callId: string, result: unknown): void {

249293

const pending = this.pendingCalls.get(callId);

250294

if (!pending) {

@@ -268,3 +312,25 @@ export class GoogleLiveRealtimeTalkTransport implements RealtimeTalkTransport {

268312

});

269313

}

270314

}

315+316+

async function decodeGoogleLiveMessageData(data: unknown): Promise<string> {

317+

if (typeof data === "string") {

318+

return data;

319+

}

320+

if (typeof Blob !== "undefined" && data instanceof Blob) {

321+

data = await data.arrayBuffer();

322+

}

323+

if (isArrayBufferLike(data)) {

324+

return new TextDecoder().decode(new Uint8Array(data));

325+

}

326+

if (ArrayBuffer.isView(data)) {

327+

return new TextDecoder().decode(new Uint8Array(data.buffer, data.byteOffset, data.byteLength));

328+

}

329+

return String(data);

330+

}

331+332+

function isArrayBufferLike(data: unknown): data is ArrayBuffer {

333+

return (

334+

data instanceof ArrayBuffer || Object.prototype.toString.call(data) === "[object ArrayBuffer]"

335+

);

336+

}