




















@@ -1196,7 +1196,7 @@ describe("sanitizeSessionHistory", () => {
11961196]);
11971197});
119811981199-it("strips prior assistant reasoning for Gemma 4 OpenAI-compatible replay", async () => {
1199+it("strips prior assistant reasoning for Qwen-style OpenAI-compatible replay", async () => {
12001200setNonGoogleModelApi();
1201120112021202const messages = castAgentMessages([
@@ -1215,8 +1215,8 @@ describe("sanitizeSessionHistory", () => {
12151215const result = await sanitizeSessionHistory({
12161216 messages,
12171217modelApi: "openai-completions",
1218-provider: "lmstudio",
1219-modelId: "google/gemma-4-26b-a4b-it",
1218+provider: "vllm",
1219+modelId: "Qwen3.6-27B",
12201220sessionManager: makeMockSessionManager(),
12211221sessionId: TEST_SESSION_ID,
12221222});
@@ -1226,7 +1226,7 @@ describe("sanitizeSessionHistory", () => {
12261226]);
12271227});
122812281229-it("preserves current Gemma 4 tool-call reasoning during tool continuation replay", async () => {
1229+it("preserves current OpenAI-compatible tool-call reasoning during tool continuation replay", async () => {
12301230setNonGoogleModelApi();
1231123112321232const messages = castAgentMessages([
@@ -1251,8 +1251,8 @@ describe("sanitizeSessionHistory", () => {
12511251const result = await sanitizeSessionHistory({
12521252 messages,
12531253modelApi: "openai-completions",
1254-provider: "lmstudio",
1255-modelId: "google/gemma-4-26b-a4b-it",
1254+provider: "vllm",
1255+modelId: "Qwen3.6-27B",
12561256sessionManager: makeMockSessionManager(),
12571257sessionId: TEST_SESSION_ID,
12581258});
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。