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

推荐订阅源

博客园 - Franky
有赞技术团队
有赞技术团队
宝玉的分享
宝玉的分享
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
博客园 - 司徒正美
D
Docker
T
The Blog of Author Tim Ferriss
罗磊的独立博客
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
J
Java Code Geeks
Jina AI
Jina AI
博客园 - 【当耐特】
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
V
Visual Studio 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
fix(gateway): align transcription relay audio contract · ...
obviyus · 2026-05-18 · via Recent Commits to openclaw:main

@@ -15,6 +15,8 @@ const MAX_AUDIO_BASE64_BYTES = 512 * 1024;

1515

const MAX_TRANSCRIPTION_SESSIONS_PER_CONN = 2;

1616

const MAX_TRANSCRIPTION_SESSIONS_GLOBAL = 64;

1717

const TRANSCRIPTION_EVENT = "talk.event";

18+

const RELAY_INPUT_ENCODING = "g711_ulaw";

19+

const RELAY_INPUT_SAMPLE_RATE_HZ = 8000;

18201921

type TalkTranscriptionRelayEventPayload =

2022

| { transcriptionSessionId: string; type: "ready" }

@@ -54,14 +56,92 @@ type TalkTranscriptionRelaySessionResult = {

5456

transport: "gateway-relay";

5557

transcriptionSessionId: string;

5658

audio: {

57-

inputEncoding: "pcm16";

58-

inputSampleRateHz: 24000;

59+

inputEncoding: "g711_ulaw";

60+

inputSampleRateHz: 8000;

5961

};

6062

expiresAt: number;

6163

};

62646365

const transcriptionSessions = new Map<string, TranscriptionRelaySession>();

646667+

function normalizeRelayInputEncoding(

68+

value: unknown,

69+

): "g711_ulaw" | "g711_alaw" | "pcm16" | undefined {

70+

if (typeof value !== "string") {

71+

return undefined;

72+

}

73+

const normalized = value.trim().toLowerCase();

74+

if (!normalized) {

75+

return undefined;

76+

}

77+

if (

78+

normalized === "mulaw" ||

79+

normalized === "ulaw" ||

80+

normalized === "g711_ulaw" ||

81+

normalized === "g711-mulaw" ||

82+

normalized === "pcm_mulaw" ||

83+

normalized === "audio/pcmu" ||

84+

normalized === "ulaw_8000"

85+

) {

86+

return "g711_ulaw";

87+

}

88+

if (

89+

normalized === "alaw" ||

90+

normalized === "g711_alaw" ||

91+

normalized === "g711-alaw" ||

92+

normalized === "pcm_alaw"

93+

) {

94+

return "g711_alaw";

95+

}

96+

if (

97+

normalized === "pcm" ||

98+

normalized === "pcm16" ||

99+

normalized === "linear16" ||

100+

normalized === "pcm_s16le"

101+

) {

102+

return "pcm16";

103+

}

104+

return undefined;

105+

}

106+107+

function readFiniteNumber(value: unknown): number | undefined {

108+

const next =

109+

typeof value === "number"

110+

? value

111+

: typeof value === "string"

112+

? Number.parseFloat(value)

113+

: undefined;

114+

return Number.isFinite(next) ? next : undefined;

115+

}

116+117+

function inferSampleRateFromAudioFormat(value: unknown): number | undefined {

118+

if (typeof value !== "string") {

119+

return undefined;

120+

}

121+

const match = value.match(/_(\d+)$/);

122+

return match ? readFiniteNumber(match[1]) : undefined;

123+

}

124+125+

function assertRelayInputAudioConfig(providerConfig: RealtimeTranscriptionProviderConfig): void {

126+

const encodingValue =

127+

providerConfig.encoding ?? providerConfig.audioFormat ?? providerConfig.audio_format;

128+

const encoding = normalizeRelayInputEncoding(encodingValue);

129+

if (encoding && encoding !== RELAY_INPUT_ENCODING) {

130+

throw new Error(

131+

`Gateway transcription relay requires ${RELAY_INPUT_ENCODING}/${RELAY_INPUT_SAMPLE_RATE_HZ} audio`,

132+

);

133+

}

134+135+

const sampleRate =

136+

readFiniteNumber(providerConfig.sampleRate ?? providerConfig.sample_rate) ??

137+

inferSampleRateFromAudioFormat(encodingValue);

138+

if (sampleRate && sampleRate !== RELAY_INPUT_SAMPLE_RATE_HZ) {

139+

throw new Error(

140+

`Gateway transcription relay requires ${RELAY_INPUT_ENCODING}/${RELAY_INPUT_SAMPLE_RATE_HZ} audio`,

141+

);

142+

}

143+

}

144+65145

function broadcastToOwner(

66146

context: GatewayRequestContext,

67147

connId: string,

@@ -137,6 +217,7 @@ export function createTalkTranscriptionRelaySession(

137217

params: CreateTalkTranscriptionRelaySessionParams,

138218

): TalkTranscriptionRelaySessionResult {

139219

enforceTranscriptionSessionLimits(params.connId);

220+

assertRelayInputAudioConfig(params.providerConfig);

140221

const transcriptionSessionId = randomUUID();

141222

const expiresAtMs = Date.now() + TRANSCRIPTION_SESSION_TTL_MS;

142223

const talk = createTalkSessionController(

@@ -262,8 +343,8 @@ export function createTalkTranscriptionRelaySession(

262343

transport: "gateway-relay",

263344

transcriptionSessionId,

264345

audio: {

265-

inputEncoding: "pcm16",

266-

inputSampleRateHz: 24000,

346+

inputEncoding: RELAY_INPUT_ENCODING,

347+

inputSampleRateHz: RELAY_INPUT_SAMPLE_RATE_HZ,

267348

},

268349

expiresAt: Math.floor(expiresAtMs / 1000),

269350

};