From ae58c40554e5b774672c7c92ec7444b1adba58e9 Mon Sep 17 00:00:00 2001 From: Khalid Adil Date: Thu, 23 Apr 2026 13:44:16 -0500 Subject: [PATCH] Fix missing export --- models.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models.js b/models.js index 9ece689..84a36b9 100644 --- a/models.js +++ b/models.js @@ -1,4 +1,4 @@ // Server-side re-export of the shared model config. // Keeps the single source of truth in src/models.js (where Vite can reach it) // while giving Node a root-level import path. -export { MODELS, DEFAULT_MODEL_ID, findModel } from './src/models.js'; +export { MODELS, DEFAULT_MODEL_ID, findModel, normalizeModelId } from './src/models.js';