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

推荐订阅源

宝玉的分享
宝玉的分享
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
Y
Y Combinator Blog
月光博客
月光博客
IT之家
IT之家
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
L
LangChain Blog
博客园_首页
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - Franky
WordPress大学
WordPress大学
云风的 BLOG
云风的 BLOG
M
MIT News - Artificial intelligence
V
Visual Studio Blog
小众软件
小众软件
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium

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(voice-call): start listening after telnyx greetings ·...
steipete · 2026-04-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -79,6 +79,7 @@ Docs: https://docs.openclaw.ai

7979

- Providers/ElevenLabs: omit the MP3-only `Accept` header for PCM telephony synthesis, so Voice Call requests for `pcm_22050` no longer receive MP3 audio. Fixes #67340. Thanks @marcchabot.

8080

- Plugins/Voice Call: reap stale pre-answer calls by default, honor configured TTS timeouts for Twilio media-stream playback, and fail empty telephony audio instead of completing as silence. Fixes #42071; supersedes #60957. Thanks @Ryce and @sliekens.

8181

- Plugins/Voice Call: terminate expired restored call sessions with the provider and restart restored max-duration timers with only the remaining duration, preventing stale outbound retry loops after Gateway restarts. Fixes #48739. Thanks @mira-solari.

82+

- Plugins/Voice Call: start provider STT after Telnyx outbound conversation greetings and pass configured Telnyx voice IDs through to the speak action. Fixes #56091. Thanks @Roshan.

8283

- Skills: honor legacy `metadata.clawdbot` requirements and installer hints when `metadata.openclaw` is absent, so older skills no longer appear ready when required binaries are missing. Fixes #71323. Thanks @chen-zhang-cs-code.

8384

- Browser/config: expand `~` in `browser.executablePath` before Chromium launch, so home-relative custom browser paths no longer fail with `ENOENT`. Fixes #67264. Thanks @Quratulain-bilal.

8485

- Telegram/streaming: hide tool-progress status updates by default while keeping explicit `streaming.preview.toolProgress` opt-in support for edited preview messages. Fixes #71320. Thanks @neeravmakwana.

Original file line numberDiff line numberDiff line change

@@ -245,6 +245,27 @@ describe("CallManager notify and mapping", () => {

245245

expectFirstPlayTtsText(provider, "Twilio stream unavailable");

246246

});

247247
248+

it("starts listening after the initial greeting for Telnyx conversation calls", async () => {

249+

const { manager, provider } = await createManagerHarness({}, new FakeProvider("telnyx"));

250+
251+

const callId = await initiateCallWithMessage(

252+

manager,

253+

"+15550000012",

254+

"Telnyx hello",

255+

"conversation",

256+

);

257+

await answerCall(manager, callId, "evt-conversation-telnyx");

258+
259+

expectFirstPlayTtsText(provider, "Telnyx hello");

260+

expect(provider.startListeningCalls).toEqual([

261+

expect.objectContaining({

262+

callId,

263+

providerCallId: "call-uuid",

264+

}),

265+

]);

266+

expect(requireCall(manager, callId).state).toBe("listening");

267+

});

268+
248269

it("preserves initialMessage after a failed first playback and retries on next trigger", async () => {

249270

const provider = new FailFirstPlayTtsProvider("plivo");

250271

const { manager } = await createManagerHarness({}, provider);

Original file line numberDiff line numberDiff line change

@@ -19,15 +19,15 @@ import type {

1919

} from "./types.js";

2020
2121

export class FakeProvider implements VoiceCallProvider {

22-

readonly name: "plivo" | "twilio";

22+

readonly name: "plivo" | "twilio" | "telnyx";

2323

twilioStreamConnectEnabled = true;

2424

readonly playTtsCalls: PlayTtsInput[] = [];

2525

readonly hangupCalls: HangupCallInput[] = [];

2626

readonly startListeningCalls: StartListeningInput[] = [];

2727

readonly stopListeningCalls: StopListeningInput[] = [];

2828

getCallStatusResult: GetCallStatusResult = { status: "in-progress", isTerminal: false };

2929
30-

constructor(name: "plivo" | "twilio" = "plivo") {

30+

constructor(name: "plivo" | "twilio" | "telnyx" = "plivo") {

3131

this.name = name;

3232

}

3333
Original file line numberDiff line numberDiff line change

@@ -226,6 +226,36 @@ describe("voice-call outbound helpers", () => {

226226

expect(transitionStateMock).toHaveBeenLastCalledWith(call, "listening");

227227

});

228228
229+

it("passes configured voice ids through to Telnyx speak", async () => {

230+

const call = { callId: "call-1", providerCallId: "provider-1", state: "active" };

231+

const playTts = vi.fn(async () => {});

232+

const ctx = {

233+

activeCalls: new Map([["call-1", call]]),

234+

providerCallIdMap: new Map(),

235+

provider: { name: "telnyx", playTts },

236+

config: {

237+

tts: {

238+

provider: "telnyx",

239+

providers: {

240+

telnyx: {

241+

voiceId: "Telnyx.Qwen3TTS.12345678-1234-1234-1234-123456789abc",

242+

},

243+

},

244+

},

245+

},

246+

storePath: "/tmp/voice-call.json",

247+

};

248+
249+

await expect(speak(ctx as never, "call-1", "hello")).resolves.toEqual({ success: true });

250+
251+

expect(playTts).toHaveBeenCalledWith({

252+

callId: "call-1",

253+

providerCallId: "provider-1",

254+

text: "hello",

255+

voice: "Telnyx.Qwen3TTS.12345678-1234-1234-1234-123456789abc",

256+

});

257+

});

258+
229259

it("sends DTMF through connected provider calls", async () => {

230260

const call = { callId: "call-1", providerCallId: "provider-1", state: "active" };

231261

const sendDtmfProvider = vi.fn(async () => {});

Original file line numberDiff line numberDiff line change

@@ -213,7 +213,7 @@ export async function speak(

213213

transitionState(call, "speaking");

214214

persistCallRecord(ctx.storePath, call);

215215
216-

const voice = provider.name === "twilio" ? resolvePreferredTtsVoice(ctx.config) : undefined;

216+

const voice = resolvePreferredTtsVoice(ctx.config);

217217

await provider.playTts({

218218

callId,

219219

providerCallId,

@@ -233,6 +233,19 @@ export async function speak(

233233

}

234234

}

235235
236+

function shouldStartListeningAfterInitialMessage(ctx: ConversationContext): boolean {

237+

if (ctx.provider?.name !== "twilio") {

238+

return true;

239+

}

240+

if (!ctx.config.streaming.enabled) {

241+

return true;

242+

}

243+

const streamAwareProvider = ctx.provider as typeof ctx.provider & {

244+

isConversationStreamConnectEnabled?: () => boolean;

245+

};

246+

return streamAwareProvider.isConversationStreamConnectEnabled?.() !== true;

247+

}

248+
236249

export async function sendDtmf(

237250

ctx: SpeakContext,

238251

callId: CallId,

@@ -316,6 +329,17 @@ export async function speakInitialMessage(

316329

await endCall(ctx, call.callId);

317330

}

318331

}, delaySec * 1000);

332+

} else if (

333+

mode === "conversation" &&

334+

ctx.provider &&

335+

shouldStartListeningAfterInitialMessage(ctx)

336+

) {

337+

transitionState(call, "listening");

338+

persistCallRecord(ctx.storePath, call);

339+

await ctx.provider.startListening({

340+

callId: call.callId,

341+

providerCallId,

342+

});

319343

}

320344

} finally {

321345

ctx.initialMessageInFlight.delete(call.callId);

Original file line numberDiff line numberDiff line change

@@ -301,3 +301,40 @@ describe("TelnyxProvider answer control", () => {

301301

expect(release).toHaveBeenCalledTimes(1);

302302

});

303303

});

304+
305+

describe("TelnyxProvider speak control", () => {

306+

it("passes custom Telnyx voice ids to the speak action", async () => {

307+

const release = vi.fn(async () => {});

308+

apiMocks.fetchWithSsrFGuard.mockResolvedValue({

309+

response: new Response(JSON.stringify({ data: {} }), { status: 200 }),

310+

release,

311+

});

312+

const provider = new TelnyxProvider({

313+

apiKey: "KEY123",

314+

connectionId: "CONN456",

315+

publicKey: undefined,

316+

});

317+
318+

await provider.playTts({

319+

callId: "call-1",

320+

providerCallId: "call-control-1",

321+

text: "hello",

322+

voice: "Telnyx.Qwen3TTS.12345678-1234-1234-1234-123456789abc",

323+

});

324+
325+

expect(apiMocks.fetchWithSsrFGuard).toHaveBeenCalledWith(

326+

expect.objectContaining({

327+

url: "https://api.telnyx.com/v2/calls/call-control-1/actions/speak",

328+

auditContext: "voice-call.telnyx.api",

329+

policy: { allowedHostnames: ["api.telnyx.com"] },

330+

init: expect.objectContaining({

331+

method: "POST",

332+

body: expect.stringContaining(

333+

'"voice":"Telnyx.Qwen3TTS.12345678-1234-1234-1234-123456789abc"',

334+

),

335+

}),

336+

}),

337+

);

338+

expect(release).toHaveBeenCalledTimes(1);

339+

});

340+

});