Spaces:
Runtime error
Runtime error
File size: 10,077 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | import { randomUUID } from "node:crypto";
import { POST as postChatCompletion } from "@/app/api/v1/chat/completions/route";
import { handleValidatedEmbeddingRequestBody } from "@/app/api/v1/embeddings/route";
import { POST as postRerank } from "@/app/api/v1/rerank/route";
import { buildComboTestRequestBody, extractComboTestResponseText } from "@/lib/combos/testHealth";
import { getCustomModels } from "@/lib/localDb";
import { sanitizeErrorMessage } from "@omniroute/open-sse/utils/error";
import { withRateLimit } from "@omniroute/open-sse/services/rateLimitManager";
const INTERNAL_ORIGIN = "http://omniroute.internal";
const DEFAULT_TEST_TIMEOUT_MS = 10_000;
function asRecord(value: unknown): Record<string, unknown> {
return value && typeof value === "object" && !Array.isArray(value)
? (value as Record<string, unknown>)
: {};
}
function getErrorMessage(error: unknown): string {
return sanitizeErrorMessage(error) || "Unknown error";
}
function getErrorName(error: unknown): string {
return error instanceof Error ? error.name : "";
}
function extractProviderErrorMessage(body: unknown, fallback: string) {
const record = asRecord(body);
const error = record.error;
if (typeof error === "string" && error.trim()) return error;
const errorRecord = asRecord(error);
const message = errorRecord.message;
return typeof message === "string" && message.trim() ? message : fallback;
}
function stripFirstSegment(modelId: string): string | null {
const slashIdx = modelId.indexOf("/");
return slashIdx > 0 ? modelId.slice(slashIdx + 1) : null;
}
async function findCustomModelMetadata(providerId: string, modelId: string) {
try {
const customModels = await getCustomModels(providerId);
if (!Array.isArray(customModels)) return null;
const candidates = new Set([modelId]);
const stripped = stripFirstSegment(modelId);
if (stripped) candidates.add(stripped);
if (modelId.startsWith(`${providerId}/`)) candidates.add(modelId.slice(providerId.length + 1));
return (
customModels.find(
(model: any) => typeof model?.id === "string" && candidates.has(model.id)
) || null
);
} catch {
return null;
}
}
function buildInternalChatRequest(testBody: Record<string, unknown>, signal: AbortSignal) {
return new Request(`${INTERNAL_ORIGIN}/v1/chat/completions`, {
method: "POST",
headers: {
"Content-Type": "application/json",
// Reuse the existing strict-mode internal bypass for live health checks.
"X-Internal-Test": "combo-health-check",
"X-OmniRoute-No-Cache": "true",
"X-Request-Id": `model-test-${randomUUID()}`,
},
body: JSON.stringify(testBody),
signal,
});
}
function buildInternalRerankRequest(testBody: Record<string, unknown>, signal: AbortSignal) {
return new Request(`${INTERNAL_ORIGIN}/v1/rerank`, {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Internal-Test": "combo-health-check",
"X-OmniRoute-No-Cache": "true",
"X-Request-Id": `model-test-${randomUUID()}`,
},
body: JSON.stringify(testBody),
signal,
});
}
export function detectTestKind(modelStr: string, customModel: any) {
const supportedEndpoints = Array.isArray(customModel?.supportedEndpoints)
? customModel.supportedEndpoints
: [];
const apiFormat = typeof customModel?.apiFormat === "string" ? customModel.apiFormat : "";
const lowerModel = modelStr.toLowerCase();
const isRerank =
apiFormat === "rerank" ||
supportedEndpoints.includes("rerank") ||
lowerModel.includes("rerank");
const isEmbedding =
!isRerank &&
(apiFormat === "embeddings" ||
supportedEndpoints.includes("embeddings") ||
lowerModel.includes("embedding") ||
lowerModel.includes("bge-") ||
lowerModel.includes("text-embed") ||
lowerModel.includes("jina-clip") ||
lowerModel.includes("colbert"));
return { isRerank, isEmbedding };
}
/**
* Parse a Retry-After header value (seconds-as-number or HTTP-date) into seconds.
* Returns undefined if the value is missing or unparseable.
*/
export function parseRetryAfterHeader(value: string | null | undefined): number | undefined {
if (typeof value !== "string") return undefined;
const trimmed = value.trim();
if (!trimmed) return undefined;
const num = Number(trimmed);
if (Number.isFinite(num) && num >= 0) {
return Math.ceil(num);
}
const ms = Date.parse(trimmed);
if (Number.isFinite(ms)) {
return Math.max(0, Math.ceil((ms - Date.now()) / 1000));
}
return undefined;
}
export interface RunSingleModelTestOptions {
providerId: string;
modelId: string;
connectionId?: string;
timeoutMs?: number;
}
export interface SingleModelTestResult {
modelId: string;
status: "ok" | "error" | "rate_limited";
latencyMs: number;
responseText?: string;
statusCode?: number;
httpStatus: number;
error?: string;
rateLimited?: boolean;
isTimeout?: boolean;
retryAfter?: number;
}
/**
* Run a single model test. When `connectionId` is provided, wraps the
* upstream call with `withRateLimit` (Bottleneck). Returns a plain
* `SingleModelTestResult` (not an HTTP Response) so the single-test and
* batch-test endpoints can format it differently.
*/
export async function runSingleModelTest(
options: RunSingleModelTestOptions
): Promise<SingleModelTestResult> {
const { providerId, modelId, connectionId, timeoutMs = DEFAULT_TEST_TIMEOUT_MS } = options;
let fullModelStr = modelId;
if (!fullModelStr.includes("/")) {
fullModelStr = `${providerId}/${modelId}`;
}
const startTime = Date.now();
const customModel = await findCustomModelMetadata(providerId, fullModelStr);
const { isRerank, isEmbedding } = detectTestKind(fullModelStr, customModel);
const testBody = isRerank
? {
model: fullModelStr,
query: "What is OmniRoute?",
documents: [
"OmniRoute routes AI requests across configured providers.",
"This document is unrelated to the test query.",
],
top_n: 1,
return_documents: false,
}
: buildComboTestRequestBody(fullModelStr, isEmbedding);
// Per-model AbortController. We track whether the timeout fired so we can
// distinguish "rate-limit queue aborted" (withRateLimit threw AbortError
// with no timeout) from "timeout fired and aborted withRateLimit".
const controller = new AbortController();
let timedOut = false;
const timeoutHandle = setTimeout(() => {
timedOut = true;
controller.abort();
}, timeoutMs);
const runInner = async (signal: AbortSignal): Promise<Response> => {
if (isEmbedding) {
return handleValidatedEmbeddingRequestBody(
testBody as Record<string, unknown> & { model: string }
);
}
if (isRerank) {
return postRerank(buildInternalRerankRequest(testBody, signal));
}
return postChatCompletion(buildInternalChatRequest(testBody, signal));
};
let res: Response;
try {
if (connectionId) {
res = await withRateLimit(
providerId,
connectionId,
fullModelStr,
(signal) => runInner(signal),
controller.signal
);
} else {
res = await runInner(controller.signal);
}
} catch (error: unknown) {
clearTimeout(timeoutHandle);
const latencyMs = Date.now() - startTime;
const errorName = getErrorName(error);
if (errorName === "AbortError") {
if (timedOut) {
return {
modelId: fullModelStr,
status: "error",
latencyMs,
httpStatus: 500,
error: `Timeout (${Math.round(timeoutMs / 1000)}s)`,
isTimeout: true,
};
}
// AbortError without timeout = withRateLimit queue rejection / abort.
// Surface as rate_limited so the batch endpoint can stop the loop.
return {
modelId: fullModelStr,
status: "rate_limited",
latencyMs,
httpStatus: 429,
error: "Rate limited (queue aborted)",
rateLimited: true,
};
}
return {
modelId: fullModelStr,
status: "error",
latencyMs,
httpStatus: 500,
error: getErrorMessage(error),
};
}
clearTimeout(timeoutHandle);
const latencyMs = Date.now() - startTime;
if (res.status === 429) {
const retryAfter = parseRetryAfterHeader(res.headers.get("retry-after"));
let errorMsg = "Rate limited";
try {
const errBody = await res.json();
errorMsg = extractProviderErrorMessage(errBody, res.statusText || errorMsg);
} catch {
errorMsg = res.statusText || errorMsg;
}
return {
modelId: fullModelStr,
status: "rate_limited",
latencyMs,
statusCode: res.status,
httpStatus: res.status,
error: errorMsg,
rateLimited: true,
...(retryAfter !== undefined ? { retryAfter } : {}),
};
}
if (res.ok) {
let responseBody = null;
try {
responseBody = await res.json();
} catch {
responseBody = null;
}
const responseText = extractComboTestResponseText(responseBody);
if (isRerank) {
return {
modelId: fullModelStr,
status: "ok",
latencyMs,
httpStatus: 200,
responseText: "[Rerank completed successfully]",
};
}
if (!responseText && !isEmbedding) {
return {
modelId: fullModelStr,
status: "error",
latencyMs,
statusCode: res.status,
httpStatus: 400,
error: "Provider returned HTTP 200 but no text content.",
};
}
return {
modelId: fullModelStr,
status: "ok",
latencyMs,
httpStatus: 200,
responseText,
};
}
let errorMsg = "";
try {
const errBody = await res.json();
errorMsg = extractProviderErrorMessage(errBody, res.statusText);
} catch {
errorMsg = res.statusText;
}
return {
modelId: fullModelStr,
status: "error",
latencyMs,
statusCode: res.status,
httpStatus: res.status,
error: errorMsg,
};
}
|