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

推荐订阅源

博客园 - 三生石上(FineUI控件)
Blog — PlanetScale
Blog — PlanetScale
B
Blog
GbyAI
GbyAI
爱范儿
爱范儿
月光博客
月光博客
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
腾讯CDC
MyScale Blog
MyScale Blog
V
Visual Studio Blog
The Cloudflare Blog
Microsoft Security Blog
Microsoft Security Blog
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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
chore(deadcode): dedupe live assistant text extraction · ...
vincentkoc · 2026-06-22 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -2,12 +2,12 @@

22

import type { AssistantMessage, Tool } from "openclaw/plugin-sdk/llm";

33

import { Type } from "typebox";

44

import { describe, expect, it } from "vitest";

5+

import { extractAssistantText } from "./embedded-agent-utils.js";

56

import {

67

buildAssistantHistoryTurn,

78

buildStableCachePrefix,

89

completeSimpleWithLiveTimeout,

910

computeCacheHitRate,

10-

extractAssistantText,

1111

LIVE_CACHE_TEST_ENABLED,

1212

logLiveCache,

1313

resolveLiveDirectModel,

Original file line numberDiff line numberDiff line change

@@ -3,11 +3,8 @@ import type { Message, Model } from "openclaw/plugin-sdk/llm";

33

import { describe, expect, it, vi } from "vitest";

44

import { wrapStreamFnSanitizeMalformedToolCalls } from "./embedded-agent-runner/run/attempt.tool-call-normalization.js";

55

import { OMITTED_ASSISTANT_REASONING_TEXT } from "./embedded-agent-runner/thinking.js";

6-

import {

7-

completeSimpleWithLiveTimeout,

8-

extractAssistantText,

9-

logLiveCache,

10-

} from "./live-cache-test-support.js";

6+

import { extractAssistantText } from "./embedded-agent-utils.js";

7+

import { completeSimpleWithLiveTimeout, logLiveCache } from "./live-cache-test-support.js";

118

import { isLiveTestEnabled } from "./live-test-helpers.js";

129

import { buildAssistantMessageWithZeroUsage } from "./stream-message-shared.js";

1310
Original file line numberDiff line numberDiff line change

@@ -9,12 +9,12 @@ import type { OpenClawConfig } from "../config/config.js";

99

import { deleteTestEnvValue, setTestEnvValue } from "../test-utils/env.js";

1010

import { runEmbeddedAgent } from "./embedded-agent-runner.js";

1111

import { compactEmbeddedAgentSessionDirect } from "./embedded-agent-runner/compact.runtime.js";

12+

import { extractAssistantText } from "./embedded-agent-utils.js";

1213

import {

1314

buildAssistantHistoryTurn as buildTypedAssistantHistoryTurn,

1415

buildStableCachePrefix,

1516

completeSimpleWithLiveTimeout,

1617

computeCacheHitRate,

17-

extractAssistantText,

1818

LIVE_CACHE_TEST_ENABLED,

1919

logLiveCache,

2020

resolveLiveDirectModel,

Original file line numberDiff line numberDiff line change

@@ -9,6 +9,7 @@ import fs from "node:fs/promises";

99

import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/string-coerce";

1010

import { Type } from "typebox";

1111

import type { AssistantMessage, Message, Tool } from "../llm/types.js";

12+

import { extractAssistantText } from "./embedded-agent-utils.js";

1213

import {

1314

LIVE_CACHE_REGRESSION_BASELINE,

1415

type LiveCacheFloor,

@@ -18,7 +19,6 @@ import {

1819

buildStableCachePrefix,

1920

completeSimpleWithLiveTimeout,

2021

computeCacheHitRate,

21-

extractAssistantText,

2222

isLiveCachePrerequisiteSkip,

2323

type LiveResolvedModel,

2424

type LiveResolvedModelPool,

Original file line numberDiff line numberDiff line change

@@ -163,15 +163,6 @@ export function buildStableCachePrefix(tag: string, sections = 160): string {

163163

return lines.join("\n");

164164

}

165165
166-

/** Extract normalized assistant text from a streamed/completed assistant message. */

167-

export function extractAssistantText(message: AssistantMessage): string {

168-

return message.content

169-

.filter((block) => block.type === "text")

170-

.map((block) => block.text.trim())

171-

.filter(Boolean)

172-

.join(" ");

173-

}

174-
175166

/** Build a zero-usage assistant history turn for cache fixture setup. */

176167

export function buildAssistantHistoryTurn(

177168

text: string,

Original file line numberDiff line numberDiff line change

@@ -4,7 +4,6 @@ import {

44

buildLiveModelFileProbeContext,

55

buildLiveModelFileProbeRetryContext,

66

buildLiveModelImageProbeContext,

7-

extractAssistantText,

87

fileProbeTextMatches,

98

imageProbeTextMatches,

109

isLiveModelProbeEnabled,

@@ -61,18 +60,6 @@ describe("live model turn probes", () => {

6160

expect(content[1]).toHaveProperty("mimeType", "image/png");

6261

});

6362
64-

it("extracts assistant text blocks only", () => {

65-

expect(

66-

extractAssistantText({

67-

content: [

68-

{ type: "thinking", thinking: "hidden" },

69-

{ type: "text", text: " ok " },

70-

{ type: "toolCall", id: "1", name: "noop", arguments: {} },

71-

],

72-

}),

73-

).toBe("ok");

74-

});

75-
7663

it("detects image input support from model metadata", () => {

7764

expect(modelSupportsImageInput({ input: ["text", "image"] })).toBe(true);

7865

expect(modelSupportsImageInput({ input: ["text"] })).toBe(false);

Original file line numberDiff line numberDiff line change

@@ -4,7 +4,7 @@

44

* Live profile tests use these fixtures to verify text, file-label, and image

55

* turn behavior without coupling probe construction to the large live suite.

66

*/

7-

import type { AssistantMessage, Context, Model } from "../llm/types.js";

7+

import type { Context, Model } from "../llm/types.js";

88
99

/** Stable token embedded in file-style live probe prompts. */

1010

export const LIVE_MODEL_FILE_PROBE_TOKEN = "opal";

@@ -69,15 +69,6 @@ export function isLiveModelProbeEnabled(

6969

return !["0", "false", "no", "off"].includes(raw);

7070

}

7171
72-

/** Extracts assistant text blocks into the probe result string. */

73-

export function extractAssistantText(message: Pick<AssistantMessage, "content">): string {

74-

return message.content

75-

.filter((block) => block.type === "text")

76-

.map((block) => block.text.trim())

77-

.filter(Boolean)

78-

.join(" ");

79-

}

80-
8172

/** Returns whether model metadata advertises image input support. */

8273

export function modelSupportsImageInput(model: Pick<Model, "input">): boolean {

8374

return model.input.includes("image");

Original file line numberDiff line numberDiff line change

@@ -20,6 +20,7 @@ import { resolveDefaultAgentDir } from "./agent-scope.js";

2020

import { externalCliDiscoveryForProviders } from "./auth-profiles/external-cli-discovery.js";

2121

import { ensureCustomApiRegistered } from "./custom-api-registry.js";

2222

import { isRateLimitErrorMessage } from "./embedded-agent-helpers/errors.js";

23+

import { extractAssistantText } from "./embedded-agent-utils.js";

2324

import { collectAnthropicApiKeys } from "./live-auth-keys.js";

2425

import { appendPrioritizedDynamicLiveModels } from "./live-model-dynamic-candidates.js";

2526

import { isModelNotFoundErrorMessage } from "./live-model-errors.js";

@@ -38,7 +39,6 @@ import {

3839

buildLiveModelFileProbeContext,

3940

buildLiveModelFileProbeRetryContext,

4041

buildLiveModelImageProbeContext,

41-

extractAssistantText,

4242

fileProbeTextMatches,

4343

imageProbeTextMatches,

4444

isLiveModelProbeEnabled,