mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-14 19:02:17 +03:00
Validado em lote numa worktree combinada com os 9 PRs desta leva sobre o tip de `release/v3.8.51`: `typecheck:core` limpo, `check:provider-consistency` OK (273 entradas REGISTRY, **356** providers canônicos), `check-docs-counts-sync` exit 0 e **300/300** nos testes que a leva toca. O crescimento de arquivo que os PRs empilham uns sobre os outros foi rebaselinado num único registro datado (`_rebaseline_2026_09_03_houminxi_batch`), com a decomposição por arquivo: `providers/page.tsx` +18 (import CSV do #12504 + busca do #12495 no mesmo painel), `accountFallback.ts` +6 (o #12566 sobre o rebaseline que o #12590 já registrou — os dois tocam `checkFallbackError`) e `chatCore.ts` +3 (invalidez de cache de quota no 429 do #12325). As violações restantes (`codex.ts`, `stream.ts`) foram medidas também no tip puro e são drift da base, não desta leva.
286 lines
9.2 KiB
TypeScript
286 lines
9.2 KiB
TypeScript
import { createHash } from "node:crypto";
|
|
import { buildErrorBody } from "../../utils/error.ts";
|
|
import { isModelLocked, hasPerModelQuota } from "../accountFallback.ts";
|
|
import { isProviderInCooldown } from "../providerCooldownTracker.ts";
|
|
import { getCircuitBreaker } from "../../../src/shared/utils/circuitBreaker.ts";
|
|
import type { ResilienceSettings } from "../../../src/lib/resilience/settings";
|
|
import { checkCredentialGate } from "../credentialGate.ts";
|
|
import { canAffordRequest } from "../../../src/lib/quota/quotaScheduler.ts";
|
|
import { resolveQuotaExhaustionCutoffForTarget } from "./quotaExhaustionCutoff.ts";
|
|
import type { ResetWindowConfig } from "./quotaScoring.ts";
|
|
import { parseModel } from "../model.ts";
|
|
import type { ComboLogger, IsModelAvailable } from "./types.ts";
|
|
|
|
import type { ResolvedComboTarget } from "./types.ts";
|
|
|
|
type NativeTurnPin = {
|
|
comboName: string;
|
|
modelStr: string;
|
|
provider: string;
|
|
connectionId: string;
|
|
createdAt: number;
|
|
expiresAt: number;
|
|
};
|
|
|
|
const TTL_MS = 45 * 60_000;
|
|
const MAX_PINS = 1_000;
|
|
const pins = new Map<string, NativeTurnPin>();
|
|
|
|
function record(value: unknown): Record<string, unknown> | undefined {
|
|
return value && typeof value === "object" && !Array.isArray(value)
|
|
? (value as Record<string, unknown>)
|
|
: undefined;
|
|
}
|
|
|
|
function turnMetadata(body: Record<string, unknown>): Record<string, unknown> | undefined {
|
|
const metadata = record(body.client_metadata);
|
|
const raw = metadata?.["x-codex-turn-metadata"];
|
|
if (typeof raw === "string") {
|
|
try {
|
|
return record(JSON.parse(raw));
|
|
} catch {
|
|
return undefined;
|
|
}
|
|
}
|
|
return record(raw);
|
|
}
|
|
|
|
export function nativeCodexTurnKey(
|
|
body: Record<string, unknown>,
|
|
comboName: string
|
|
): string | null {
|
|
const metadata = turnMetadata(body);
|
|
const threadId = typeof metadata?.thread_id === "string" ? metadata.thread_id : "";
|
|
const turnId = typeof metadata?.turn_id === "string" ? metadata.turn_id : "";
|
|
if (!threadId || !turnId) return null;
|
|
return createHash("sha256").update(JSON.stringify({ comboName, threadId, turnId })).digest("hex");
|
|
}
|
|
|
|
function prune(now = Date.now()): void {
|
|
for (const [key, pin] of pins) if (pin.expiresAt <= now) pins.delete(key);
|
|
while (pins.size > MAX_PINS) {
|
|
const oldest = pins.keys().next().value as string | undefined;
|
|
if (!oldest) break;
|
|
pins.delete(oldest);
|
|
}
|
|
}
|
|
|
|
export function getNativeCodexTurnPin(
|
|
body: Record<string, unknown>,
|
|
comboName: string
|
|
): NativeTurnPin | null {
|
|
prune();
|
|
const key = nativeCodexTurnKey(body, comboName);
|
|
return key ? (pins.get(key) ?? null) : null;
|
|
}
|
|
|
|
export function pinNativeCodexTurn(args: {
|
|
body: Record<string, unknown>;
|
|
comboName: string;
|
|
target: ResolvedComboTarget;
|
|
connectionId: string;
|
|
}): void {
|
|
const key = nativeCodexTurnKey(args.body, args.comboName);
|
|
if (!key || !args.connectionId) return;
|
|
const existing = pins.get(key);
|
|
if (
|
|
existing &&
|
|
(existing.modelStr !== args.target.modelStr || existing.provider !== args.target.provider)
|
|
) {
|
|
throw new Error("Native Codex turn target changed after output was emitted");
|
|
}
|
|
// ConnectionId changes are allowed (failover to sibling connection)
|
|
// as long as provider + model stay the same.
|
|
const now = Date.now();
|
|
pins.set(key, {
|
|
comboName: args.comboName,
|
|
modelStr: args.target.modelStr,
|
|
provider: args.target.provider,
|
|
connectionId: args.connectionId,
|
|
createdAt: existing?.createdAt ?? now,
|
|
expiresAt: now + TTL_MS,
|
|
});
|
|
prune(now);
|
|
}
|
|
|
|
/**
|
|
* Apply a native Codex turn pin to the target list.
|
|
*
|
|
* Returns all compatible targets (same provider + model) with the pinned
|
|
* connection preferred first. This allows fill-first failover: if the
|
|
* pinned connection is rejected by a pre-dispatch gate, the combo engine
|
|
* tries the next compatible connection instead of returning 503.
|
|
*
|
|
* Provider + model remain locked for the turn — only the connection
|
|
* can fall over.
|
|
*/
|
|
export function applyNativeCodexTurnPin(
|
|
targets: ResolvedComboTarget[],
|
|
pin: NativeTurnPin
|
|
): ResolvedComboTarget[] {
|
|
const compatible = targets.filter(
|
|
(candidate) => candidate.modelStr === pin.modelStr && candidate.provider === pin.provider
|
|
);
|
|
if (compatible.length === 0) return [];
|
|
|
|
let pinnedIndex = compatible.findIndex((t) => t.connectionId === pin.connectionId);
|
|
// No candidate already carries the pinned connectionId (e.g. the caller
|
|
// resolved the target before a connection was assigned) — assign the pin
|
|
// onto the first compatible candidate so dispatch targets it directly.
|
|
if (pinnedIndex < 0) pinnedIndex = 0;
|
|
|
|
// Resolve the pinned slot's connectionId in ORIGINAL order first, so
|
|
// allowedConnectionIds reflects the same set/order regardless of which
|
|
// candidate ends up first in the returned (pinned-first) array.
|
|
const resolved = compatible.map((t, i) =>
|
|
i === pinnedIndex ? { ...t, connectionId: pin.connectionId } : t
|
|
);
|
|
const allowedConnectionIds = resolved
|
|
.map((t) => t.connectionId)
|
|
.filter((id): id is string => id !== null);
|
|
|
|
// Pinned connection first, then same-provider/model siblings as fallback
|
|
const pinned = resolved[pinnedIndex];
|
|
const siblings = resolved.filter((_, i) => i !== pinnedIndex);
|
|
const ordered = [pinned, ...siblings];
|
|
|
|
return ordered.map((target) => ({
|
|
...target,
|
|
// Allow only connections for the pinned provider+model
|
|
allowedConnectionIds,
|
|
}));
|
|
}
|
|
|
|
export function revokeNativeCodexTurnPinsForConnection(connectionId: string): number {
|
|
let revoked = 0;
|
|
for (const [key, pin] of pins) {
|
|
if (pin.connectionId !== connectionId) continue;
|
|
pins.delete(key);
|
|
revoked += 1;
|
|
}
|
|
return revoked;
|
|
}
|
|
|
|
export const NATIVE_CODEX_PINNED_MODEL_UNAVAILABLE_CODE = "NATIVE_CODEX_PINNED_MODEL_UNAVAILABLE";
|
|
export const NATIVE_CODEX_PINNED_MODEL_UNAVAILABLE_MESSAGE =
|
|
"The model handling this native Codex turn is no longer available. This turn cannot switch providers or models after output has been emitted. Start a new turn to allow Combo routing to select another model.";
|
|
|
|
export function createPinnedModelUnavailableResponse(): Response {
|
|
const body = buildErrorBody(400, NATIVE_CODEX_PINNED_MODEL_UNAVAILABLE_MESSAGE, undefined, {
|
|
code: NATIVE_CODEX_PINNED_MODEL_UNAVAILABLE_CODE,
|
|
type: "invalid_request_error",
|
|
});
|
|
return new Response(JSON.stringify(body), {
|
|
status: 400,
|
|
headers: { "Content-Type": "application/json" },
|
|
});
|
|
}
|
|
|
|
export interface CheckPinnedTargetsModelScopedUnusableOptions {
|
|
pinnedTargets: ResolvedComboTarget[];
|
|
resilienceSettings?: ResilienceSettings | null;
|
|
quotaCutoffResetWindowConfig?: ResetWindowConfig;
|
|
comboName: string;
|
|
body: Record<string, unknown>;
|
|
log?: ComboLogger;
|
|
isModelAvailable?: IsModelAvailable;
|
|
}
|
|
|
|
export async function isPinnedTargetModelScopedUnusable(args: {
|
|
target: ResolvedComboTarget;
|
|
resilienceSettings?: ResilienceSettings | null;
|
|
quotaCutoffResetWindowConfig?: ResetWindowConfig;
|
|
comboName: string;
|
|
body: Record<string, unknown>;
|
|
log?: ComboLogger;
|
|
isModelAvailable?: IsModelAvailable;
|
|
}): Promise<boolean> {
|
|
const {
|
|
target,
|
|
resilienceSettings,
|
|
quotaCutoffResetWindowConfig,
|
|
comboName,
|
|
body,
|
|
log,
|
|
isModelAvailable,
|
|
} = args;
|
|
const provider = target.provider;
|
|
const connectionId = target.connectionId || "";
|
|
const rawModel = parseModel(target.modelStr).model || target.modelStr;
|
|
|
|
if (provider && provider !== "unknown") {
|
|
const cb = getCircuitBreaker(provider);
|
|
if (cb.getStatus().state === "OPEN") return false;
|
|
if (
|
|
resilienceSettings?.providerCooldown?.enabled &&
|
|
(isProviderInCooldown(provider, connectionId || undefined, resilienceSettings) ||
|
|
isProviderInCooldown(provider, undefined, resilienceSettings))
|
|
) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (
|
|
connectionId &&
|
|
checkCredentialGate(connectionId, provider, target.modelStr).allowed === false
|
|
) {
|
|
return false;
|
|
}
|
|
|
|
if (provider && rawModel && isModelLocked(provider, connectionId, rawModel)) return true;
|
|
|
|
if (
|
|
process.env.OMNIROUTE_QUOTA_AWARE_ROUTING === "1" &&
|
|
provider &&
|
|
connectionId &&
|
|
!canAffordRequest(connectionId, target.modelStr, body).affordable
|
|
) {
|
|
return true;
|
|
}
|
|
|
|
if (provider && connectionId && quotaCutoffResetWindowConfig) {
|
|
const cutoff = await resolveQuotaExhaustionCutoffForTarget(
|
|
provider,
|
|
connectionId,
|
|
resilienceSettings,
|
|
quotaCutoffResetWindowConfig,
|
|
comboName,
|
|
log ?? { info: () => {}, warn: () => {}, error: () => {}, debug: () => {} },
|
|
target.modelStr
|
|
);
|
|
if (cutoff.blocked) return true;
|
|
}
|
|
|
|
if (isModelAvailable) {
|
|
const available = await Promise.resolve(isModelAvailable(target.modelStr, target)).catch(
|
|
() => true
|
|
);
|
|
if (
|
|
!available &&
|
|
provider &&
|
|
rawModel &&
|
|
(isModelLocked(provider, connectionId, rawModel) || hasPerModelQuota(provider, rawModel))
|
|
) {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
export async function areAllPinnedTargetsModelScopedUnusable(
|
|
options: CheckPinnedTargetsModelScopedUnusableOptions
|
|
): Promise<boolean> {
|
|
if (!options.pinnedTargets?.length) return false;
|
|
for (const target of options.pinnedTargets) {
|
|
if (!(await isPinnedTargetModelScopedUnusable({ target, ...options }))) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
export function clearNativeCodexTurnPinsForTests(): void {
|
|
pins.clear();
|
|
}
|