File size: 15,794 Bytes
31daf3d 79b976b f29cdb8 0ab1dfb 3d931f5 806c0e0 bb6f8cb 4331e77 806c0e0 ec59d54 4331e77 b39a7fc d6bddc2 b39a7fc 8cabca8 b39a7fc 4331e77 b39a7fc 4331e77 b39a7fc 0ab1dfb 4331e77 b39a7fc 52dfa8c 02d0f85 7bdb5ed b39a7fc 0ab1dfb 2883086 52dfa8c 4489403 b39a7fc 0348c77 a5e332d e67ab0e 0a3916d 4331e77 d4c7ddb b39a7fc f29cdb8 4331e77 4e9a7a9 4331e77 6a449cd 4331e77 6a449cd 4331e77 4e9a7a9 f8ddff7 e67ab0e f8ddff7 34f0b6d 9883efb 34f0b6d f8ddff7 34f0b6d f8ddff7 4331e77 c4f6eb3 4331e77 1a14bea 0c0f258 1a14bea 4331e77 1a14bea 4331e77 4e9a7a9 f8ddff7 4331e77 cbdd432 4331e77 4e9a7a9 4331e77 e67ab0e 4331e77 e67ab0e 4331e77 3d931f5 f8ddff7 d4c7ddb f8ddff7 3d931f5 f8ddff7 4331e77 f8ddff7 3d931f5 f8ddff7 4331e77 3d931f5 f8ddff7 e67ab0e f8ddff7 f18ddf0 f8ddff7 b39a7fc f8ddff7 0ab1dfb e67ab0e f8ddff7 baa5d2f f8ddff7 1d8f41b f8ddff7 1d8f41b f8ddff7 4331e77 f8ddff7 4331e77 f8ddff7 baa5d2f f8ddff7 a1ae528 f8ddff7 4489403 fbb1115 b39a7fc 56ea25e 0ab1dfb 0a3916d 4331e77 0a3916d |
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 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 |
import { config } from "$lib/server/config";
import type { ChatTemplateInput } from "$lib/types/Template";
import { z } from "zod";
import endpoints, { endpointSchema, type Endpoint } from "./endpoints/endpoints";
import JSON5 from "json5";
import { logger } from "$lib/server/logger";
import { makeRouterEndpoint } from "$lib/server/router/endpoint";
type Optional<T, K extends keyof T> = Pick<Partial<T>, K> & Omit<T, K>;
const sanitizeJSONEnv = (val: string, fallback: string) => {
const raw = (val ?? "").trim();
const unquoted = raw.startsWith("`") && raw.endsWith("`") ? raw.slice(1, -1) : raw;
return unquoted || fallback;
};
const modelConfig = z.object({
/** Used as an identifier in DB */
id: z.string().optional(),
/** Used to link to the model page, and for inference */
name: z.string().default(""),
displayName: z.string().min(1).optional(),
description: z.string().min(1).optional(),
logoUrl: z.string().url().optional(),
websiteUrl: z.string().url().optional(),
modelUrl: z.string().url().optional(),
tokenizer: z.never().optional(),
datasetName: z.string().min(1).optional(),
datasetUrl: z.string().url().optional(),
preprompt: z.string().default(""),
prepromptUrl: z.string().url().optional(),
chatPromptTemplate: z.never().optional(),
promptExamples: z
.array(
z.object({
title: z.string().min(1),
prompt: z.string().min(1),
})
)
.optional(),
endpoints: z.array(endpointSchema).optional(),
providers: z.array(z.object({ supports_tools: z.boolean().optional() }).passthrough()).optional(),
parameters: z
.object({
temperature: z.number().min(0).max(2).optional(),
truncate: z.number().int().positive().optional(),
max_tokens: z.number().int().positive().optional(),
stop: z.array(z.string()).optional(),
top_p: z.number().positive().optional(),
top_k: z.number().positive().optional(),
frequency_penalty: z.number().min(-2).max(2).optional(),
presence_penalty: z.number().min(-2).max(2).optional(),
})
.passthrough()
.optional(),
multimodal: z.boolean().default(false),
multimodalAcceptedMimetypes: z.array(z.string()).optional(),
// Aggregated tool-calling capability across providers (HF router)
supportsTools: z.boolean().default(false),
unlisted: z.boolean().default(false),
embeddingModel: z.never().optional(),
/** Used to enable/disable system prompt usage */
systemRoleSupported: z.boolean().default(true),
});
type ModelConfig = z.infer<typeof modelConfig>;
const overrideEntrySchema = modelConfig
.partial()
.extend({
id: z.string().optional(),
name: z.string().optional(),
})
.refine((value) => Boolean((value.id ?? value.name)?.trim()), {
message: "Model override entry must provide an id or name",
});
type ModelOverride = z.infer<typeof overrideEntrySchema>;
const openaiBaseUrl = config.OPENAI_BASE_URL
? config.OPENAI_BASE_URL.replace(/\/$/, "")
: undefined;
const isHFRouter = openaiBaseUrl === "https://router.huggingface.co/v1";
const listSchema = z
.object({
data: z.array(
z.object({
id: z.string(),
description: z.string().optional(),
providers: z
.array(z.object({ supports_tools: z.boolean().optional() }).passthrough())
.optional(),
architecture: z
.object({
input_modalities: z.array(z.string()).optional(),
})
.passthrough()
.optional(),
})
),
})
.passthrough();
function getChatPromptRender(_m: ModelConfig): (inputs: ChatTemplateInput) => string {
// Minimal template to support legacy "completions" flow if ever used.
// We avoid any tokenizer/Jinja usage in this build.
return ({ messages, preprompt }) => {
const parts: string[] = [];
if (preprompt) parts.push(`[SYSTEM]\n${preprompt}`);
for (const msg of messages) {
const role = msg.from === "assistant" ? "ASSISTANT" : msg.from.toUpperCase();
parts.push(`[${role}]\n${msg.content}`);
}
parts.push(`[ASSISTANT]`);
return parts.join("\n\n");
};
}
const processModel = async (m: ModelConfig) => ({
...m,
chatPromptRender: await getChatPromptRender(m),
id: m.id || m.name,
displayName: m.displayName || m.name,
preprompt: m.prepromptUrl ? await fetch(m.prepromptUrl).then((r) => r.text()) : m.preprompt,
parameters: { ...m.parameters, stop_sequences: m.parameters?.stop },
unlisted: m.unlisted ?? false,
});
const addEndpoint = (m: Awaited<ReturnType<typeof processModel>>) => ({
...m,
getEndpoint: async (): Promise<Endpoint> => {
if (!m.endpoints || m.endpoints.length === 0) {
throw new Error("No endpoints configured. This build requires OpenAI-compatible endpoints.");
}
// Only support OpenAI-compatible endpoints in this build
const endpoint = m.endpoints[0];
if (endpoint.type !== "openai") {
throw new Error("Only 'openai' endpoint type is supported in this build");
}
return await endpoints.openai({ ...endpoint, model: m });
},
});
type InternalProcessedModel = Awaited<ReturnType<typeof addEndpoint>> & {
isRouter: boolean;
hasInferenceAPI: boolean;
};
const inferenceApiIds: string[] = [];
const getModelOverrides = (): ModelOverride[] => {
const overridesEnv = (Reflect.get(config, "MODELS") as string | undefined) ?? "";
if (!overridesEnv.trim()) {
return [];
}
try {
return z.array(overrideEntrySchema).parse(JSON5.parse(sanitizeJSONEnv(overridesEnv, "[]")));
} catch (error) {
logger.error(error, "[models] Failed to parse MODELS overrides");
return [];
}
};
export type ModelsRefreshSummary = {
refreshedAt: Date;
durationMs: number;
added: string[];
removed: string[];
changed: string[];
total: number;
};
export type ProcessedModel = InternalProcessedModel;
export let models: ProcessedModel[] = [];
export let defaultModel!: ProcessedModel;
export let taskModel!: ProcessedModel;
export let validModelIdSchema: z.ZodType<string> = z.string();
export let lastModelRefresh = new Date(0);
export let lastModelRefreshDurationMs = 0;
export let lastModelRefreshSummary: ModelsRefreshSummary = {
refreshedAt: new Date(0),
durationMs: 0,
added: [],
removed: [],
changed: [],
total: 0,
};
let inflightRefresh: Promise<ModelsRefreshSummary> | null = null;
const createValidModelIdSchema = (modelList: ProcessedModel[]): z.ZodType<string> => {
if (modelList.length === 0) {
throw new Error("No models available to build validation schema");
}
const ids = new Set(modelList.map((m) => m.id));
return z.string().refine((value) => ids.has(value), "Invalid model id");
};
const resolveTaskModel = (modelList: ProcessedModel[]) => {
if (modelList.length === 0) {
throw new Error("No models available to select task model");
}
if (config.TASK_MODEL) {
const preferred = modelList.find(
(m) => m.name === config.TASK_MODEL || m.id === config.TASK_MODEL
);
if (preferred) {
return preferred;
}
}
return modelList[0];
};
const signatureForModel = (model: ProcessedModel) =>
JSON.stringify({
description: model.description,
displayName: model.displayName,
providers: model.providers,
parameters: model.parameters,
preprompt: model.preprompt,
prepromptUrl: model.prepromptUrl,
endpoints:
model.endpoints?.map((endpoint) => {
if (endpoint.type === "openai") {
const { type, baseURL } = endpoint;
return { type, baseURL };
}
return { type: endpoint.type };
}) ?? null,
multimodal: model.multimodal,
multimodalAcceptedMimetypes: model.multimodalAcceptedMimetypes,
supportsTools: (model as unknown as { supportsTools?: boolean }).supportsTools ?? false,
isRouter: model.isRouter,
hasInferenceAPI: model.hasInferenceAPI,
});
const resolveDefaultModel = (modelList: ProcessedModel[]) => {
if (modelList.length === 0) {
throw new Error("No models available to select default model");
}
const defaultModelId = config.DEFAULT_MODEL || "zai-org/GLM-4.7";
const preferred = modelList.find((m) => m.name === defaultModelId || m.id === defaultModelId);
if (preferred) {
return preferred;
}
return modelList[0];
};
const applyModelState = (newModels: ProcessedModel[], startedAt: number): ModelsRefreshSummary => {
if (newModels.length === 0) {
throw new Error("Failed to load any models from upstream");
}
const previousIds = new Set(models.map((m) => m.id));
const previousSignatures = new Map(models.map((m) => [m.id, signatureForModel(m)]));
const refreshedAt = new Date();
const durationMs = Date.now() - startedAt;
models = newModels;
defaultModel = resolveDefaultModel(models);
taskModel = resolveTaskModel(models);
validModelIdSchema = createValidModelIdSchema(models);
lastModelRefresh = refreshedAt;
lastModelRefreshDurationMs = durationMs;
const added = newModels.map((m) => m.id).filter((id) => !previousIds.has(id));
const removed = Array.from(previousIds).filter(
(id) => !newModels.some((model) => model.id === id)
);
const changed = newModels
.filter((model) => {
const previousSignature = previousSignatures.get(model.id);
return previousSignature !== undefined && previousSignature !== signatureForModel(model);
})
.map((model) => model.id);
const summary: ModelsRefreshSummary = {
refreshedAt,
durationMs,
added,
removed,
changed,
total: models.length,
};
lastModelRefreshSummary = summary;
logger.info(
{
total: summary.total,
added: summary.added,
removed: summary.removed,
changed: summary.changed,
durationMs: summary.durationMs,
},
"[models] Model cache refreshed"
);
return summary;
};
const buildModels = async (): Promise<ProcessedModel[]> => {
if (!openaiBaseUrl) {
logger.error(
"OPENAI_BASE_URL is required. Set it to an OpenAI-compatible base (e.g., https://router.huggingface.co/v1)."
);
throw new Error("OPENAI_BASE_URL not set");
}
try {
const baseURL = openaiBaseUrl;
logger.info({ baseURL }, "[models] Using OpenAI-compatible base URL");
// Canonical auth token is OPENAI_API_KEY; keep HF_TOKEN as legacy alias
const authToken = config.OPENAI_API_KEY || config.HF_TOKEN;
// Use auth token from the start if available to avoid rate limiting issues
// Some APIs rate-limit unauthenticated requests more aggressively
const response = await fetch(`${baseURL}/models`, {
headers: authToken ? { Authorization: `Bearer ${authToken}` } : undefined,
});
logger.info({ status: response.status }, "[models] First fetch status");
if (!response.ok && response.status === 401 && !authToken) {
// If we get 401 and didn't have a token, there's nothing we can do
throw new Error(
`Failed to fetch ${baseURL}/models: ${response.status} ${response.statusText} (no auth token available)`
);
}
if (!response.ok) {
throw new Error(
`Failed to fetch ${baseURL}/models: ${response.status} ${response.statusText}`
);
}
const json = await response.json();
logger.info({ keys: Object.keys(json || {}) }, "[models] Response keys");
const parsed = listSchema.parse(json);
logger.info({ count: parsed.data.length }, "[models] Parsed models count");
let modelsRaw = parsed.data.map((m) => {
let logoUrl: string | undefined = undefined;
if (isHFRouter && m.id.includes("/")) {
const org = m.id.split("/")[0];
logoUrl = `https://huggingface.co/api/avatars/${encodeURIComponent(org)}`;
}
const inputModalities = (m.architecture?.input_modalities ?? []).map((modality) =>
modality.toLowerCase()
);
const supportsImageInput =
inputModalities.includes("image") || inputModalities.includes("vision");
// If any provider supports tools, consider the model as supporting tools
const supportsTools = Boolean((m.providers ?? []).some((p) => p?.supports_tools === true));
return {
id: m.id,
name: m.id,
displayName: m.id,
description: m.description,
logoUrl,
providers: m.providers,
multimodal: supportsImageInput,
multimodalAcceptedMimetypes: supportsImageInput ? ["image/*"] : undefined,
supportsTools,
endpoints: [
{
type: "openai" as const,
baseURL,
// apiKey will be taken from OPENAI_API_KEY or HF_TOKEN automatically
},
],
} as ModelConfig;
}) as ModelConfig[];
const overrides = getModelOverrides();
if (overrides.length) {
const overrideMap = new Map<string, ModelOverride>();
for (const override of overrides) {
for (const key of [override.id, override.name]) {
const trimmed = key?.trim();
if (trimmed) overrideMap.set(trimmed, override);
}
}
modelsRaw = modelsRaw.map((model) => {
const override = overrideMap.get(model.id ?? "") ?? overrideMap.get(model.name ?? "");
if (!override) return model;
const { id, name, ...rest } = override;
void id;
void name;
return {
...model,
...rest,
};
});
}
const builtModels = await Promise.all(
modelsRaw.map((e) =>
processModel(e)
.then(addEndpoint)
.then(async (m) => ({
...m,
hasInferenceAPI: inferenceApiIds.includes(m.id ?? m.name),
// router decoration added later
isRouter: false as boolean,
}))
)
);
const archBase = (config.LLM_ROUTER_ARCH_BASE_URL || "").trim();
const routerLabel = (config.PUBLIC_LLM_ROUTER_DISPLAY_NAME || "Omni").trim() || "Omni";
const routerLogo = (config.PUBLIC_LLM_ROUTER_LOGO_URL || "").trim();
const routerAliasId = (config.PUBLIC_LLM_ROUTER_ALIAS_ID || "omni").trim() || "omni";
const routerMultimodalEnabled =
(config.LLM_ROUTER_ENABLE_MULTIMODAL || "").toLowerCase() === "true";
const routerToolsEnabled = (config.LLM_ROUTER_ENABLE_TOOLS || "").toLowerCase() === "true";
let decorated = builtModels as ProcessedModel[];
if (archBase) {
// Build a minimal model config for the alias
const aliasRaw = {
id: routerAliasId,
name: routerAliasId,
displayName: routerLabel,
description: "Automatically routes your messages to the best model for your request.",
logoUrl: routerLogo || undefined,
preprompt: "",
endpoints: [
{
type: "openai" as const,
baseURL: openaiBaseUrl,
},
],
// Keep the alias visible
unlisted: false,
} as ModelConfig;
if (routerMultimodalEnabled) {
aliasRaw.multimodal = true;
aliasRaw.multimodalAcceptedMimetypes = ["image/*"];
}
if (routerToolsEnabled) {
aliasRaw.supportsTools = true;
}
const aliasBase = await processModel(aliasRaw);
// Create a self-referential ProcessedModel for the router endpoint
const aliasModel: ProcessedModel = {
...aliasBase,
isRouter: true,
hasInferenceAPI: false,
// getEndpoint uses the router wrapper regardless of the endpoints array
getEndpoint: async (): Promise<Endpoint> => makeRouterEndpoint(aliasModel),
} as ProcessedModel;
// Put alias first
decorated = [aliasModel, ...decorated];
}
return decorated;
} catch (e) {
logger.error(e, "Failed to load models from OpenAI base URL");
throw e;
}
};
const rebuildModels = async (): Promise<ModelsRefreshSummary> => {
const startedAt = Date.now();
const newModels = await buildModels();
return applyModelState(newModels, startedAt);
};
await rebuildModels();
export const refreshModels = async (): Promise<ModelsRefreshSummary> => {
if (inflightRefresh) {
return inflightRefresh;
}
inflightRefresh = rebuildModels().finally(() => {
inflightRefresh = null;
});
return inflightRefresh;
};
export const validateModel = (_models: BackendModel[]) => {
// Zod enum function requires 2 parameters
return z.enum([_models[0].id, ..._models.slice(1).map((m) => m.id)]);
};
// if `TASK_MODEL` is string & name of a model in `MODELS`, then we use `MODELS[TASK_MODEL]`, else we try to parse `TASK_MODEL` as a model config itself
export type BackendModel = Optional<
typeof defaultModel,
"preprompt" | "parameters" | "multimodal" | "unlisted" | "hasInferenceAPI"
>;
|