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

推荐订阅源

H
Help Net Security
月光博客
月光博客
IT之家
IT之家
B
Blog RSS Feed
T
Tailwind CSS Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
MyScale Blog
MyScale Blog
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - Franky
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
博客园_首页
B
Blog
V
V2EX
腾讯CDC
Vercel News
Vercel News
量子位
Microsoft Security Blog
Microsoft Security 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(check): restore core typecheck · openclaw/openclaw@e6...
vincentkoc · 2026-05-31 · via Recent Commits to openclaw:main
11

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

22

import type { ResolvedProviderAuth } from "../agents/model-auth-runtime-shared.js";

3-

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

3+

import { AuthStorage, ModelRegistry } from "../agents/sessions/index.js";

4+

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

45

import { MAX_TIMER_TIMEOUT_MS } from "../shared/number-coercion.js";

56

import { summarizeText } from "./tts-core.js";

7+

import type { SpeechModelOverridePolicy } from "./provider-types.js";

68

import type { ResolvedTtsConfig } from "./tts-types.js";

7910+

const modelOverridePolicy: SpeechModelOverridePolicy = {

11+

enabled: false,

12+

allowText: false,

13+

allowProvider: false,

14+

allowVoice: false,

15+

allowModelId: false,

16+

allowVoiceSettings: false,

17+

allowNormalization: false,

18+

allowSeed: false,

19+

};

20+21+

const usage: Usage = {

22+

input: 0,

23+

output: 0,

24+

cacheRead: 0,

25+

cacheWrite: 0,

26+

totalTokens: 0,

27+

cost: {

28+

input: 0,

29+

output: 0,

30+

cacheRead: 0,

31+

cacheWrite: 0,

32+

total: 0,

33+

},

34+

};

35+836

describe("TTS core", () => {

937

it("clamps oversized summarization timeout timers", async () => {

1038

const setTimeoutSpy = vi.spyOn(globalThis, "setTimeout");

1139

try {

1240

const model = {

13-

api: "openai-responses",

14-

provider: { id: "test-provider", name: "Test Provider" },

1541

id: "test-model",

1642

name: "Test Model",

17-

} as unknown as Model;

43+

api: "test-api",

44+

provider: "test-provider",

45+

baseUrl: "https://example.test",

46+

reasoning: false,

47+

input: ["text"],

48+

cost: { input: 0, output: 0, cacheRead: 0, cacheWrite: 0 },

49+

contextWindow: 4096,

50+

maxTokens: 1024,

51+

} satisfies Model;

1852

const config = {

53+

auto: "off",

54+

mode: "final",

55+

provider: "test-provider",

56+

providerSource: "config",

57+

personas: {},

1958

summaryModel: "test-provider/test-model",

20-

} as unknown as ResolvedTtsConfig;

21-

const auth: ResolvedProviderAuth = {

59+

modelOverrides: modelOverridePolicy,

60+

providerConfigs: {},

61+

maxTextLength: 10_000,

62+

timeoutMs: 10_000,

63+

} satisfies ResolvedTtsConfig;

64+

const auth = {

2265

apiKey: "key",

23-

mode: "api-key",

2466

source: "test",

25-

};

67+

mode: "api-key",

68+

} satisfies ResolvedProviderAuth;

69+

const authStorage = AuthStorage.inMemory();

70+

const modelRegistry = ModelRegistry.inMemory(authStorage);

71+

const assistant = {

72+

role: "assistant",

73+

content: [{ type: "text", text: "Short summary." }],

74+

api: model.api,

75+

provider: model.provider,

76+

model: model.id,

77+

stopReason: "stop",

78+

usage,

79+

timestamp: Date.now(),

80+

} satisfies AssistantMessage;

26812782

const result = await summarizeText(

2883

{

@@ -33,39 +88,14 @@ describe("TTS core", () => {

3388

timeoutMs: MAX_TIMER_TIMEOUT_MS + 1,

3489

},

3590

{

36-

completeSimple: vi.fn(

37-

async () =>

38-

({

39-

role: "assistant",

40-

content: [{ type: "text", text: "Short summary." }],

41-

api: "openai-responses",

42-

provider: model.provider,

43-

model: model.id,

44-

stopReason: "stop",

45-

usage: {

46-

input: 0,

47-

output: 0,

48-

cacheRead: 0,

49-

cacheWrite: 0,

50-

totalTokens: 0,

51-

cost: {

52-

input: 0,

53-

output: 0,

54-

cacheRead: 0,

55-

cacheWrite: 0,

56-

total: 0,

57-

},

58-

},

59-

timestamp: Date.now(),

60-

}) satisfies AssistantMessage,

61-

),

91+

completeSimple: vi.fn(async () => assistant),

6292

getApiKeyForModel: vi.fn(async () => auth),

63-

prepareModelForSimpleCompletion: vi.fn(({ model: preparedModel }) => preparedModel),

93+

prepareModelForSimpleCompletion: vi.fn(() => model),

6494

requireApiKey: vi.fn(() => "key"),

6595

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

66-

authStorage: {} as never,

6796

model,

68-

modelRegistry: {} as never,

97+

authStorage,

98+

modelRegistry,

6999

})),

70100

},

71101

);