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

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

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
Skip empty sherpa structured transcripts (#84667) · openc...
TurboTheTurt · 2026-05-21 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1010
1111

### Fixes

1212
13+

- Media/audio: skip empty structured sherpa-onnx transcripts instead of treating the raw JSON payload as spoken text. (#84667) Thanks @TurboTheTurtle.

1314

- CLI/perf: keep `setup --help`, `onboard --help`, and `configure --help` out of the full wizard runtime while preserving the existing help output. (#84488) Thanks @frankekn.

1415
1516

## 2026.5.20

Original file line numberDiff line numberDiff line change

@@ -771,6 +771,37 @@ describe("applyMediaUnderstanding", () => {

771771

expectCliRunOptions(options);

772772

});

773773
774+

it("skips auto-detected sherpa audio when structured output has empty text", async () => {

775+

clearMediaUnderstandingBinaryCacheForTests();

776+

const binDir = await createTempMediaDir();

777+

const modelDir = await createTempMediaDir();

778+

await createMockExecutable(binDir, "sherpa-onnx-offline");

779+

await fs.writeFile(path.join(modelDir, "tokens.txt"), "a");

780+

await fs.writeFile(path.join(modelDir, "encoder.onnx"), "a");

781+

await fs.writeFile(path.join(modelDir, "decoder.onnx"), "a");

782+

await fs.writeFile(path.join(modelDir, "joiner.onnx"), "a");

783+
784+

const emptySherpaJson =

785+

'{"lang":"","emotion":"","event":"","text":"","timestamps":[],"durations":[],"tokens":[],"ys_log_probs":[],"words":[]}';

786+

const { ctx, cfg } = await setupAudioAutoDetectCase(emptySherpaJson);

787+
788+

await withMediaAutoDetectEnv(

789+

{

790+

PATH: binDir,

791+

SHERPA_ONNX_MODEL_DIR: modelDir,

792+

},

793+

async () => {

794+

const result = await applyMediaUnderstanding({ ctx, cfg });

795+

expect(result.appliedAudio).toBe(false);

796+

},

797+

);

798+
799+

expect(ctx.Transcript).toBeUndefined();

800+

expect(ctx.Body).toBe("<media:audio>");

801+

const [command] = getRunExecCall();

802+

expect(command).toBe("sherpa-onnx-offline");

803+

});

804+
774805

it("auto-detects whisper-cli when sherpa is unavailable", async () => {

775806

clearMediaUnderstandingBinaryCacheForTests();

776807

const binDir = await createTempMediaDir();

Original file line numberDiff line numberDiff line change

@@ -81,4 +81,55 @@ describe("media-understanding CLI audio entry", () => {

8181

maxBuffer: CLI_OUTPUT_MAX_BUFFER,

8282

});

8383

});

84+
85+

it("treats sherpa structured JSON with empty text as empty output", async () => {

86+

runExecMock.mockResolvedValueOnce({

87+

stdout:

88+

'{"lang":"","emotion":"","event":"","text":"","timestamps":[],"durations":[],"tokens":[],"ys_log_probs":[],"words":[]}',

89+

stderr: "",

90+

});

91+
92+

await withAudioFixture("openclaw-cli-audio-empty-sherpa", async ({ ctx, cache }) => {

93+

const result = await runCliEntry({

94+

capability: "audio",

95+

entry: {

96+

type: "cli",

97+

command: "sherpa-onnx-offline",

98+

args: ["{{MediaPath}}"],

99+

},

100+

cfg: { tools: { media: { audio: {} } } } as OpenClawConfig,

101+

ctx,

102+

attachmentIndex: 0,

103+

cache,

104+

config: {} as never,

105+

});

106+
107+

expect(result).toBeNull();

108+

});

109+

});

110+
111+

it("extracts sherpa text from the final structured output line", async () => {

112+

runExecMock.mockResolvedValueOnce({

113+

stdout: 'loading model\n{"text":"sherpa transcript","tokens":["sherpa","transcript"]}\n',

114+

stderr: "",

115+

});

116+
117+

await withAudioFixture("openclaw-cli-audio-sherpa-json", async ({ ctx, cache }) => {

118+

const result = await runCliEntry({

119+

capability: "audio",

120+

entry: {

121+

type: "cli",

122+

command: "sherpa-onnx-offline",

123+

args: ["{{MediaPath}}"],

124+

},

125+

cfg: { tools: { media: { audio: {} } } } as OpenClawConfig,

126+

ctx,

127+

attachmentIndex: 0,

128+

cache,

129+

config: {} as never,

130+

});

131+
132+

expect(result?.text).toBe("sherpa transcript");

133+

});

134+

});

84135

});

Original file line numberDiff line numberDiff line change

@@ -96,15 +96,16 @@ function trimOutput(text: string, maxChars?: number): string {

9696

return trimmed.slice(0, maxChars).trim();

9797

}

9898
99-

function extractSherpaOnnxText(raw: string): string | null {

100-

const tryParse = (value: string): string | null => {

99+

function extractSherpaOnnxText(raw: string): { matched: boolean; text: string } {

100+

const noMatch = { matched: false, text: "" };

101+

const tryParse = (value: string): { matched: boolean; text: string } => {

101102

const trimmed = value.trim();

102103

if (!trimmed) {

103-

return null;

104+

return noMatch;

104105

}

105106

const head = trimmed[0];

106107

if (head !== "{" && head !== '"') {

107-

return null;

108+

return noMatch;

108109

}

109110

try {

110111

const parsed = JSON.parse(trimmed) as unknown;

@@ -113,16 +114,16 @@ function extractSherpaOnnxText(raw: string): string | null {

113114

}

114115

if (parsed && typeof parsed === "object") {

115116

const text = (parsed as { text?: unknown }).text;

116-

if (typeof text === "string" && text.trim()) {

117-

return text.trim();

117+

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

118+

return { matched: true, text: text.trim() };

118119

}

119120

}

120121

} catch {}

121-

return null;

122+

return noMatch;

122123

};

123124
124125

const direct = tryParse(raw);

125-

if (direct) {

126+

if (direct.matched) {

126127

return direct;

127128

}

128129

@@ -132,11 +133,11 @@ function extractSherpaOnnxText(raw: string): string | null {

132133

.filter(Boolean);

133134

for (let i = lines.length - 1; i >= 0; i -= 1) {

134135

const parsed = tryParse(lines[i] ?? "");

135-

if (parsed) {

136+

if (parsed.matched) {

136137

return parsed;

137138

}

138139

}

139-

return null;

140+

return noMatch;

140141

}

141142
142143

function commandBase(command: string): string {

@@ -230,8 +231,8 @@ async function resolveCliOutput(params: {

230231
231232

if (commandId === "sherpa-onnx-offline") {

232233

const response = extractSherpaOnnxText(params.stdout);

233-

if (response) {

234-

return response;

234+

if (response.matched) {

235+

return response.text;

235236

}

236237

}

237238
Original file line numberDiff line numberDiff line change

@@ -22,17 +22,26 @@ function readPnpmWorkspaceConfig(): PnpmWorkspaceConfig {

2222

return YAML.parse(fs.readFileSync(workspacePath, "utf8")) as PnpmWorkspaceConfig;

2323

}

2424
25+

function readPackageManifest(packagePath: string): RootPackageManifest {

26+

return JSON.parse(fs.readFileSync(packagePath, "utf8")) as RootPackageManifest;

27+

}

28+
2529

describe("root package override guardrails", () => {

2630

it("keeps Bedrock runtime ownership in the Amazon provider plugin", () => {

2731

const manifest = readRootManifest();

2832

const pnpmWorkspace = readPnpmWorkspaceConfig();

2933

const packageName = "@aws-sdk/client-bedrock-runtime";

34+

const bedrockManifest = readPackageManifest(

35+

path.resolve(process.cwd(), "extensions", "amazon-bedrock", "package.json"),

36+

);

37+

const bedrockRuntimeDependency = bedrockManifest.dependencies?.[packageName];

3038

const npmOverride = manifest.overrides?.[packageName];

31-

const pnpmOverride = pnpmWorkspace.overrides?.["@aws-sdk/client-bedrock-runtime"];

39+

const pnpmOverride = pnpmWorkspace.overrides?.[packageName];

3240
41+

expect(bedrockRuntimeDependency).toBeDefined();

3342

expect(manifest.dependencies).not.toHaveProperty(packageName);

3443

expect(npmOverride).toBeUndefined();

35-

expect(pnpmOverride).toBe("3.1048.0");

44+

expect(pnpmOverride).toBe(bedrockRuntimeDependency);

3645

});

3746
3847

it("pins the node-domexception alias exactly in npm and pnpm overrides", () => {