mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
* chore(release): open v3.8.10 development cycle Bump 3.8.9 → 3.8.10 across package.json, lockfile, electron, open-sse, and docs/reference/openapi.yaml; add the [3.8.10] CHANGELOG section (root + 41 i18n mirrors) as the integration target for the cycle. Entries land here as work merges into release/v3.8.10; finalized by the release flow. * fix(providers): resolve web provider alias collisions Assign unique aliases to HuggingChat, Kimi Web, and Qwen Web so they no longer shadow primary providers or trigger startup warnings. Add a unit test to enforce provider alias uniqueness and prevent future collisions. Also expand local ignore and VS Code exclude rules for agent, build, and worktree artifacts. * fix(responses): normalize image_url parts across input paths (#3150) Normalize image_url parts across all Responses input paths. Integrated into release/v3.8.10. * fix(api-manager): preserve API key expiration local time (#3146) Preserve API key expiration local time + clear button. Integrated into release/v3.8.10. * Strip previous_response_id for stateless Responses upstreams (#3143) Strip previous_response_id for stateless Responses upstreams (auto/strip/preserve). Integrated into release/v3.8.10. * fix(opencode-plugin): map thinking cap to interleaved in model+combo (#3138) Map caps.thinking to ModelV2.capabilities.interleaved for opencode-plugin. Integrated into release/v3.8.10. * fix(providers): use synced models as fallback for all providers (#3148) Use synced models as authoritative local catalog for all providers (+regression test). Integrated into release/v3.8.10. * fix(qoder): bifurcate validation by token type — PAT→Cosy, regular API key→dashscope (#3149) Bifurcate Qoder validation by token type (PAT→Cosy, regular→dashscope) +regression test. Integrated into release/v3.8.10. * fix(antigravity): dynamic model resolution via MITM alias table (#3144) Dynamic antigravity MITM model resolution in the executor (+bug fix +regression test; DB import dropped from client-reachable config). Integrated into release/v3.8.10. * Feature/batch allow big (#3128) Podman deployment options + larger upload body-size limits (+CONTAINER_HOST docs). Integrated into release/v3.8.10. * fix(fireworks): preserve fully-qualified router/model IDs (#3133) (#3160) Fireworks router IDs (accounts/fireworks/routers/...) were double-prefixed with accounts/fireworks/models/ → upstream 404. Add optional acceptedModelIdPrefixes to the registry entry and skip the prepend when the model already starts with an accepted prefix. Co-authored-by: KooshaPari <KooshaPari@users.noreply.github.com> * fix(llama-cpp): route to configured local baseUrl instead of OpenAI (#3136) (#3161) llama-cpp was missing from the local-provider group in buildUrl(), so it fell through to the OpenAI baseUrl and returned an OpenAI 401. Add the case to resolve the connection's providerSpecificData.baseUrl. Co-authored-by: tjengbudi <tjengbudi@users.noreply.github.com> * fix(t3-chat-web): parse cookies + convexSessionId from stored credential (#3007) (#3162) The executor read credentials.cookies/convexSessionId, but the pipeline only stores the pasted string under apiKey → t3.chat always 400'd. Parse both values from apiKey (fallback accessToken), mirroring validation.ts. Co-authored-by: minhtran162 <minhtran162@users.noreply.github.com> * fix(minimax): stop capping MiniMax-M3 / M2.7 max_tokens at 8192 (#3141) (#3163) MiniMax-M3 had no MODEL_SPECS entry and capitalized MiniMax-M2.7 missed its lowercase spec (case-sensitive lookup) → both fell to the 8192 default cap. Add the M3 spec (512K output), alias the capitalized ids, and make getModelSpec lookups case-insensitive. Co-authored-by: totaltube <totaltube@users.noreply.github.com> * fix(github-copilot): discover model catalog live from api.githubcopilot.com (#3120, #3121) (#3164) The github (Copilot) provider had a static hardcoded catalog with no discovery source, so Import Models never refreshed (#3120) and advertised non-entitled models that 400 on use (#3121). Add a live /models fetch with fallback to the static list. Co-authored-by: gabrielmoreira <gabrielmoreira@users.noreply.github.com> * fix(combo): invalidate nested-combo cache on edits + log DATA_DIR (#3147) (#3165) Editing a combo did not invalidate the 10s nested-combo expansion caches (chat.ts getCombosCachedForChat + chatCore.ts getCombosCached; the exported clearCombosCache was dead code), so a removed nested target/model could be served as a phantom for up to 10s. Wire a shared monotonic combos-cache version in readCache (bumped by invalidateDbCache("combos") on every combo write); both cache layers treat a version mismatch as a miss. Also log the resolved DATA_DIR/SQLITE_FILE absolute path at DB init so the reporter's 'persists across restart + volume wipe' symptom (a multi-replica Docker volume/DATA_DIR mismatch, not a routing bug) is diagnosable from logs. Includes consolidated CHANGELOG entries for #3133/#3136/#3007/#3141/#3120/#3121. Co-authored-by: ViFigueiredo <ViFigueiredo@users.noreply.github.com> * fix(web-tools): parse bare JSON tool calls (#3157) Parse bare JSON tool calls for deepseek-web (#2820) + fuzzy tool-name matching. Integrated into release/v3.8.10. * fix(misc): minor fixes across reasoning cache, account fallback, binary manager (#3177) Misc: ProviderProfile export, DeepSeek reasoning regex, binary guard. Integrated into release/v3.8.10. * fix(kiro): minor OAuth social exchange tweaks (#3176) Kiro social OAuth: optional targetProvider passthrough. Integrated into release/v3.8.10. * deps: bump hono from 4.12.18 to 4.12.23 (#3179) Bump hono to 4.12.23. Integrated into release/v3.8.10. * fix(providerRegistry): update kilocode format and executor (#3166) kilocode: openai format + default executor (matches kilo-gateway) + registry test. Integrated into release/v3.8.10. * feat(metrics): cross-request TTFT and gap latency after tool calls (#3173) Cross-request TTFT + gap-after-tool latency metrics (+test). Integrated into release/v3.8.10. * feat(dashboard): provider stats API endpoint and dashboard page (#3175) Provider stats dashboard + API (SQL moved to db module per Hard Rule #5, +test). Integrated into release/v3.8.10. * fix(usage): sequential+spaced OAuth quota sync, reactive force-refresh, actionable 401 (#3156) Sequential+spaced OAuth quota sync, reactive force-refresh on 401, actionable 401 in UI. Integrated into release/v3.8.10. * fix(healthcheck): per-provider proactive-refresh skip list (rescue short-TTL OAuth) (#3159) Per-provider proactive-refresh skip list (OMNIROUTE_HEALTHCHECK_SKIP_PROVIDERS) to rescue short-TTL OAuth. Integrated into release/v3.8.10. * feat(quota): show OAuth token expiry on provider cards (small, blue, informative) (#3178) Show OAuth token expiry on provider cards (small, blue, informative). Integrated into release/v3.8.10. * fix(providers): empty refresh must not resurface just-cleared synced models (#3181) Empty refresh must not resurface just-cleared synced models (fixes the release-blocking provider-models-route test). Integrated into release/v3.8.10. * chore(release): v3.8.10 — 2026-06-04 (finalize CHANGELOG) --------- Co-authored-by: Wilson <pedbookmed@gmail.com> Co-authored-by: Xiangzhe <32761048+xz-dev@users.noreply.github.com> Co-authored-by: Jan Leon <Jan.gaschler@gmail.com> Co-authored-by: M.M <mr.maatoug@gmail.com> Co-authored-by: Hernan Javier Ardila Sanchez <hjasgr@gmail.com> Co-authored-by: Markus Hartung <mail@hartmark.se> Co-authored-by: KooshaPari <KooshaPari@users.noreply.github.com> Co-authored-by: tjengbudi <tjengbudi@users.noreply.github.com> Co-authored-by: minhtran162 <minhtran162@users.noreply.github.com> Co-authored-by: totaltube <totaltube@users.noreply.github.com> Co-authored-by: gabrielmoreira <gabrielmoreira@users.noreply.github.com> Co-authored-by: ViFigueiredo <ViFigueiredo@users.noreply.github.com> Co-authored-by: PizzaV <103120356+pizzav-xyz@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Nicolas Lorin <androw95220@gmail.com>
211 lines
7.6 KiB
TypeScript
211 lines
7.6 KiB
TypeScript
// @ts-nocheck
|
|
// #2820 — deepseek-web execute() now translates tool calls instead of 400-ing on tools[].
|
|
// Request: the OpenAI tools[] is serialized into the prompt. Response: the upstream
|
|
// <tool>{...}</tool> text is parsed into OpenAI tool_calls with finish_reason "tool_calls".
|
|
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
|
|
const dsMod = await import("../../open-sse/executors/deepseek-web.ts");
|
|
const { DeepSeekWebExecutor } = dsMod;
|
|
|
|
const POW_CHALLENGE = {
|
|
algorithm: "DeepSeekHashV1",
|
|
challenge: "311b26ae1e0fe7375e242958ce46db5552a6c67fea3f96880dcd846c63a74286",
|
|
salt: "1122334455667788",
|
|
signature: "sig123",
|
|
difficulty: 1,
|
|
expire_at: 1778891543095,
|
|
expire_after: 300000,
|
|
target_path: "/api/v0/chat/completion",
|
|
};
|
|
|
|
function sseWithContent(text) {
|
|
return [
|
|
"event: ready\n",
|
|
'data: {"request_message_id":1,"response_message_id":2}\n',
|
|
"\n",
|
|
`data: ${JSON.stringify({ v: { response: { message_id: 2, fragments: [{ id: 1, type: "RESPONSE", content: text }] } } })}\n`,
|
|
"\n",
|
|
'data: {"p":"response/status","o":"SET","v":"FINISHED"}\n',
|
|
"\n",
|
|
"event: close\n",
|
|
'data: {"click_behavior":"none"}\n',
|
|
].join("");
|
|
}
|
|
|
|
function installMock(completionText) {
|
|
const original = globalThis.fetch;
|
|
const calls = { completionBodies: [] };
|
|
dsMod.tokenCache?.clear();
|
|
dsMod.sessionCache?.clear();
|
|
globalThis.fetch = async (url, opts = {}) => {
|
|
const u = String(url);
|
|
if (u.includes("/users/current"))
|
|
return new Response(
|
|
JSON.stringify({ code: 0, data: { biz_data: { token: "access-token-xyz" } } }),
|
|
{ status: 200, headers: { "Content-Type": "application/json" } }
|
|
);
|
|
if (u.includes("/chat_session/create"))
|
|
return new Response(
|
|
JSON.stringify({ code: 0, data: { biz_data: { chat_session: { id: "s-1" } } } }),
|
|
{ status: 200, headers: { "Content-Type": "application/json" } }
|
|
);
|
|
if (u.includes("/chat_session/delete"))
|
|
return new Response(JSON.stringify({ code: 0 }), {
|
|
status: 200,
|
|
headers: { "Content-Type": "application/json" },
|
|
});
|
|
if (u.includes("/create_pow_challenge"))
|
|
return new Response(
|
|
JSON.stringify({ code: 0, data: { biz_data: { challenge: POW_CHALLENGE } } }),
|
|
{ status: 200, headers: { "Content-Type": "application/json" } }
|
|
);
|
|
if (u.includes("/chat/completion")) {
|
|
try {
|
|
calls.completionBodies.push(JSON.parse(opts.body));
|
|
} catch {
|
|
calls.completionBodies.push(null);
|
|
}
|
|
return new Response(new TextEncoder().encode(sseWithContent(completionText)), {
|
|
status: 200,
|
|
headers: { "Content-Type": "text/event-stream" },
|
|
});
|
|
}
|
|
return new Response("not found", { status: 404 });
|
|
};
|
|
return {
|
|
calls,
|
|
restore: () => {
|
|
globalThis.fetch = original;
|
|
dsMod.tokenCache?.clear();
|
|
dsMod.sessionCache?.clear();
|
|
},
|
|
};
|
|
}
|
|
|
|
const TOOLS = [
|
|
{
|
|
type: "function",
|
|
function: {
|
|
name: "get_weather",
|
|
description: "Get weather",
|
|
parameters: { type: "object", properties: { city: { type: "string" } } },
|
|
},
|
|
},
|
|
];
|
|
|
|
const TOOL_REPLY = '<tool>{"name": "get_weather", "arguments": {"city": "Paris"}}</tool>';
|
|
|
|
test("execute with tools[] no longer returns 400 and serializes tools into the prompt", async () => {
|
|
const mock = installMock(TOOL_REPLY);
|
|
try {
|
|
const executor = new DeepSeekWebExecutor();
|
|
const result = await executor.execute({
|
|
model: "default",
|
|
body: { messages: [{ role: "user", content: "weather in Paris?" }], tools: TOOLS },
|
|
stream: false,
|
|
credentials: { apiKey: "tkn-tools" },
|
|
signal: AbortSignal.timeout(10000),
|
|
});
|
|
assert.notEqual(result.response.status, 400, "tools[] must not hard-fail anymore");
|
|
const body = mock.calls.completionBodies[0];
|
|
assert.ok(body.prompt.includes("get_weather"), "tool schema serialized into prompt");
|
|
} finally {
|
|
mock.restore();
|
|
}
|
|
});
|
|
|
|
test("execute (non-stream) parses <tool> reply into OpenAI tool_calls", async () => {
|
|
const mock = installMock(TOOL_REPLY);
|
|
try {
|
|
const executor = new DeepSeekWebExecutor();
|
|
const result = await executor.execute({
|
|
model: "default",
|
|
body: { messages: [{ role: "user", content: "weather?" }], tools: TOOLS },
|
|
stream: false,
|
|
credentials: { apiKey: "tkn-tools-ns" },
|
|
signal: AbortSignal.timeout(10000),
|
|
});
|
|
assert.ok(result.response.ok);
|
|
const json = JSON.parse(await result.response.text());
|
|
const choice = json.choices[0];
|
|
assert.equal(choice.finish_reason, "tool_calls");
|
|
assert.equal(choice.message.tool_calls.length, 1);
|
|
assert.equal(choice.message.tool_calls[0].function.name, "get_weather");
|
|
assert.deepEqual(JSON.parse(choice.message.tool_calls[0].function.arguments), { city: "Paris" });
|
|
assert.ok(
|
|
!String(choice.message.content || "").includes("<tool>"),
|
|
"raw tool block stripped from content"
|
|
);
|
|
} finally {
|
|
mock.restore();
|
|
}
|
|
});
|
|
|
|
test("execute (non-stream) parses bare JSON reply into OpenAI tool_calls", async () => {
|
|
const mock = installMock('{"name":"getWeather","arguments":{"city":"Paris"}}');
|
|
try {
|
|
const executor = new DeepSeekWebExecutor();
|
|
const result = await executor.execute({
|
|
model: "default",
|
|
body: { messages: [{ role: "user", content: "weather?" }], tools: TOOLS },
|
|
stream: false,
|
|
credentials: { apiKey: "tkn-tools-bare-json" },
|
|
signal: AbortSignal.timeout(10000),
|
|
});
|
|
assert.ok(result.response.ok);
|
|
const json = JSON.parse(await result.response.text());
|
|
const choice = json.choices[0];
|
|
assert.equal(choice.finish_reason, "tool_calls");
|
|
assert.equal(choice.message.tool_calls.length, 1);
|
|
assert.equal(choice.message.tool_calls[0].function.name, "get_weather");
|
|
assert.deepEqual(JSON.parse(choice.message.tool_calls[0].function.arguments), { city: "Paris" });
|
|
assert.equal(choice.message.content, null, "bare JSON tool call is stripped from content");
|
|
} finally {
|
|
mock.restore();
|
|
}
|
|
});
|
|
|
|
test("execute (stream) emits tool_calls + finish_reason tool_calls in the SSE", async () => {
|
|
const mock = installMock(TOOL_REPLY);
|
|
try {
|
|
const executor = new DeepSeekWebExecutor();
|
|
const result = await executor.execute({
|
|
model: "default",
|
|
body: { messages: [{ role: "user", content: "weather?" }], tools: TOOLS },
|
|
stream: true,
|
|
credentials: { apiKey: "tkn-tools-stream" },
|
|
signal: AbortSignal.timeout(10000),
|
|
});
|
|
assert.ok(result.response.ok);
|
|
const text = await result.response.text();
|
|
assert.ok(text.includes("tool_calls"), "stream carries tool_calls");
|
|
assert.ok(text.includes("get_weather"), "stream carries the tool name");
|
|
assert.ok(text.includes('"finish_reason":"tool_calls"'), "finish_reason tool_calls");
|
|
assert.ok(text.includes("[DONE]"), "stream terminates");
|
|
} finally {
|
|
mock.restore();
|
|
}
|
|
});
|
|
|
|
test("execute with tools[] but a plain reply still returns normal content", async () => {
|
|
const mock = installMock("Just a normal answer, no tool needed.");
|
|
try {
|
|
const executor = new DeepSeekWebExecutor();
|
|
const result = await executor.execute({
|
|
model: "default",
|
|
body: { messages: [{ role: "user", content: "hi" }], tools: TOOLS },
|
|
stream: false,
|
|
credentials: { apiKey: "tkn-tools-plain" },
|
|
signal: AbortSignal.timeout(10000),
|
|
});
|
|
assert.ok(result.response.ok);
|
|
const json = JSON.parse(await result.response.text());
|
|
assert.equal(json.choices[0].finish_reason, "stop");
|
|
assert.ok(json.choices[0].message.content.includes("normal answer"));
|
|
assert.ok(!json.choices[0].message.tool_calls, "no tool_calls on a plain reply");
|
|
} finally {
|
|
mock.restore();
|
|
}
|
|
});
|