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

推荐订阅源

博客园 - 三生石上(FineUI控件)
D
Docker
GbyAI
GbyAI
宝玉的分享
宝玉的分享
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Vercel News
Vercel News
博客园_首页
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
V
V2EX
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
IT之家
IT之家
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

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: delay meet twilio intro speech · openclaw/openclaw@f...
steipete · 2026-05-01 · via Recent Commits to openclaw:main

@@ -35,8 +35,13 @@ import { buildMeetDtmfSequence, normalizeDialInNumber } from "./src/transports/t

3535

import type { GoogleMeetSession } from "./src/transports/types.js";

36363737

const voiceCallMocks = vi.hoisted(() => ({

38-

joinMeetViaVoiceCallGateway: vi.fn(async () => ({ callId: "call-1", dtmfSent: true })),

38+

joinMeetViaVoiceCallGateway: vi.fn(async () => ({

39+

callId: "call-1",

40+

dtmfSent: true,

41+

introSent: true,

42+

})),

3943

endMeetVoiceCallGatewayCall: vi.fn(async () => {}),

44+

speakMeetViaVoiceCallGateway: vi.fn(async () => {}),

4045

}));

41464247

const fetchGuardMocks = vi.hoisted(() => ({

@@ -61,6 +66,7 @@ vi.mock("openclaw/plugin-sdk/ssrf-runtime", () => ({

6166

vi.mock("./src/voice-call-gateway.js", () => ({

6267

joinMeetViaVoiceCallGateway: voiceCallMocks.joinMeetViaVoiceCallGateway,

6368

endMeetVoiceCallGatewayCall: voiceCallMocks.endMeetVoiceCallGatewayCall,

69+

speakMeetViaVoiceCallGateway: voiceCallMocks.speakMeetViaVoiceCallGateway,

6470

}));

65716672

function setup(

@@ -348,7 +354,12 @@ describe("google-meet plugin", () => {

348354

"BlackHole 2ch",

349355

],

350356

},

351-

voiceCall: { enabled: true, requestTimeoutMs: 30000, dtmfDelayMs: 2500 },

357+

voiceCall: {

358+

enabled: true,

359+

requestTimeoutMs: 30000,

360+

dtmfDelayMs: 2500,

361+

postDtmfSpeechDelayMs: 5000,

362+

},

352363

realtime: {

353364

provider: "openai",

354365

introMessage: "Say exactly: I'm here and listening.",

@@ -955,12 +966,14 @@ describe("google-meet plugin", () => {

955966

dtmfSequence: "123456#",

956967

voiceCallId: "call-1",

957968

dtmfSent: true,

969+

introSent: true,

958970

},

959971

});

960972

expect(voiceCallMocks.joinMeetViaVoiceCallGateway).toHaveBeenCalledWith({

961973

config: expect.objectContaining({ defaultTransport: "twilio" }),

962974

dialInNumber: "+15551234567",

963975

dtmfSequence: "123456#",

976+

message: "Say exactly: I'm here and listening.",

964977

});

965978

});

966979

@@ -984,6 +997,32 @@ describe("google-meet plugin", () => {

984997

});

985998

});

9869991000+

it("delegates Twilio session speech through voice-call", async () => {

1001+

const { tools } = setup({ defaultTransport: "twilio" });

1002+

const tool = tools[0] as {

1003+

execute: (id: string, params: unknown) => Promise<{ details: { session: { id: string } } }>;

1004+

};

1005+

const joined = await tool.execute("id", {

1006+

action: "join",

1007+

url: "https://meet.google.com/abc-defg-hij",

1008+

dialInNumber: "+15551234567",

1009+

pin: "123456",

1010+

});

1011+1012+

const spoken = await tool.execute("id", {

1013+

action: "speak",

1014+

sessionId: joined.details.session.id,

1015+

message: "Say exactly: hello after joining.",

1016+

});

1017+1018+

expect(spoken.details).toMatchObject({ spoken: true });

1019+

expect(voiceCallMocks.speakMeetViaVoiceCallGateway).toHaveBeenCalledWith({

1020+

config: expect.objectContaining({ defaultTransport: "twilio" }),

1021+

callId: "call-1",

1022+

message: "Say exactly: hello after joining.",

1023+

});

1024+

});

1025+9871026

it("reports setup status through the tool", async () => {

9881027

const originalPlatform = process.platform;

9891028

Object.defineProperty(process, "platform", { value: "darwin" });