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

推荐订阅源

D
DataBreaches.Net
B
Blog
博客园_首页
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog RSS Feed
M
MIT News - Artificial intelligence
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
量子位
V
V2EX
Y
Y Combinator Blog
Hugging Face - Blog
Hugging Face - Blog
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
I
InfoQ
博客园 - 【当耐特】

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: rotate realtime voice sessions on max duration · ope...
steipete · 2026-05-25 · via Recent Commits to openclaw:main

@@ -90,6 +90,7 @@ const OPENAI_REALTIME_ACTIVE_RESPONSE_ERROR_PREFIX =

9090

"Conversation already has an active response in progress:";

9191

const OPENAI_REALTIME_NO_ACTIVE_RESPONSE_CANCEL_ERROR =

9292

"Cancellation failed: no active response found";

93+

const OPENAI_REALTIME_MAX_SESSION_DURATION_FRAGMENT = "maximum duration";

9394

const OPENAI_REALTIME_DEFAULT_MIN_BARGE_IN_AUDIO_END_MS = 250;

9495

const OPENAI_REALTIME_VOICES = [

9596

"alloy",

@@ -330,6 +331,14 @@ function prefersCodexOAuthForRealtimeModel(model: string | undefined): boolean {

330331

return (model ?? OPENAI_REALTIME_DEFAULT_MODEL).trim().toLowerCase().startsWith("gpt-");

331332

}

332333334+

function isOpenAIRealtimeMaxSessionDurationError(detail: string): boolean {

335+

const normalized = detail.toLowerCase();

336+

return (

337+

normalized.includes("session") &&

338+

normalized.includes(OPENAI_REALTIME_MAX_SESSION_DURATION_FRAGMENT)

339+

);

340+

}

341+333342

async function resolveOpenAIRealtimeDefaultAuth(params: {

334343

configuredApiKey: string | undefined;

335344

cfg: RealtimeVoiceBrowserSessionCreateRequest["cfg"] | undefined;

@@ -426,6 +435,8 @@ class OpenAIRealtimeVoiceBridge implements RealtimeVoiceBridge {

426435

private deliveredToolCallKeys = new Set<string>();

427436

private readonly flowId = randomUUID();

428437

private sessionReadyFired = false;

438+

private reconnectReason: string | undefined;

439+

private activeConnectionReason: string | undefined;

429440

private readonly audioFormat: RealtimeVoiceAudioFormat;

430441431442

constructor(private readonly config: OpenAIRealtimeVoiceBridgeConfig) {

@@ -658,7 +669,9 @@ class OpenAIRealtimeVoiceBridge implements RealtimeVoiceBridge {

658669

settleReject(new Error("OpenAI realtime connection closed before ready"));

659670

return;

660671

}

661-

void this.attemptReconnect();

672+

const reason = this.reconnectReason ?? "websocket-close";

673+

this.reconnectReason = undefined;

674+

void this.attemptReconnect(reason);

662675

});

663676

};

664677

@@ -833,26 +846,41 @@ class OpenAIRealtimeVoiceBridge implements RealtimeVoiceBridge {

833846

};

834847

}

835848836-

private async attemptReconnect(): Promise<void> {

849+

private async attemptReconnect(reason: string): Promise<void> {

837850

if (this.intentionallyClosed) {

838851

return;

839852

}

840853

if (this.reconnectAttempts >= OpenAIRealtimeVoiceBridge.MAX_RECONNECT_ATTEMPTS) {

854+

this.config.onEvent?.({

855+

direction: "client",

856+

type: "session.reconnect.exhausted",

857+

detail: `reason=${reason} attempts=${this.reconnectAttempts}`,

858+

});

841859

this.config.onClose?.("error");

842860

return;

843861

}

844862

this.reconnectAttempts += 1;

845-

const delay =

846-

OpenAIRealtimeVoiceBridge.BASE_RECONNECT_DELAY_MS * 2 ** (this.reconnectAttempts - 1);

863+

const attempt = this.reconnectAttempts;

864+

const delay = OpenAIRealtimeVoiceBridge.BASE_RECONNECT_DELAY_MS * 2 ** (attempt - 1);

865+

this.config.onEvent?.({

866+

direction: "client",

867+

type: "session.reconnect.scheduled",

868+

detail: `reason=${reason} attempt=${attempt} delayMs=${delay}`,

869+

});

847870

await new Promise((resolve) => setTimeout(resolve, delay));

848871

if (this.intentionallyClosed) {

849872

return;

850873

}

851874

try {

852875

await this.doConnect();

876+

this.config.onEvent?.({

877+

direction: "client",

878+

type: "session.reconnect.ready",

879+

detail: `reason=${reason} attempt=${attempt}`,

880+

});

853881

} catch (error) {

854882

this.config.onError?.(error instanceof Error ? error : new Error(String(error)));

855-

await this.attemptReconnect();

883+

await this.attemptReconnect(reason);

856884

}

857885

}

858886

@@ -951,11 +979,27 @@ class OpenAIRealtimeVoiceBridge implements RealtimeVoiceBridge {

951979

}

952980953981

private handleEvent(event: RealtimeEvent): void {

954-

this.config.onEvent?.({

955-

direction: "server",

956-

type: event.type,

957-

detail: this.describeServerEvent(event),

958-

});

982+

const emitServerEvent = () =>

983+

this.config.onEvent?.({

984+

direction: "server",

985+

type: event.type,

986+

detail: this.describeServerEvent(event),

987+

});

988+

if (

989+

event.type === "error" &&

990+

isOpenAIRealtimeMaxSessionDurationError(readRealtimeErrorDetail(event.error))

991+

) {

992+

this.reconnectReason = "max-duration";

993+

this.activeConnectionReason = "max-duration";

994+

this.config.onEvent?.({

995+

direction: "server",

996+

type: "session.rotation",

997+

detail: "reason=max-duration",

998+

});

999+

this.ws?.close(1000, "max-duration rotation");

1000+

return;

1001+

}

1002+

emitServerEvent();

9591003

switch (event.type) {

9601004

case "session.created":

9611005

return;

@@ -965,6 +1009,14 @@ class OpenAIRealtimeVoiceBridge implements RealtimeVoiceBridge {

9651009

for (const chunk of this.pendingAudio.splice(0)) {

9661010

this.sendAudio(chunk);

9671011

}

1012+

if (this.activeConnectionReason) {

1013+

this.config.onEvent?.({

1014+

direction: "server",

1015+

type: "session.rotation.ready",

1016+

detail: `reason=${this.activeConnectionReason}`,

1017+

});

1018+

this.activeConnectionReason = undefined;

1019+

}

9681020

if (!this.sessionReadyFired) {

9691021

this.sessionReadyFired = true;

9701022

this.config.onReady?.();