From f22fff9d72583254e1aee17ee1d9fb3cc0ab29d4 Mon Sep 17 00:00:00 2001 From: Gagan Date: Fri, 24 Jul 2026 00:09:44 +0530 Subject: [PATCH] feat(x): chat titles on gemini-3.5-flash-lite Now that the gateway allowlist includes it. Verified against staging. --- apps/x/packages/core/src/models/defaults.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/x/packages/core/src/models/defaults.ts b/apps/x/packages/core/src/models/defaults.ts index c82a1cd3..78ea2470 100644 --- a/apps/x/packages/core/src/models/defaults.ts +++ b/apps/x/packages/core/src/models/defaults.ts @@ -14,9 +14,9 @@ const SIGNED_IN_DEFAULT_PROVIDER = "rowboat"; const SIGNED_IN_KG_MODEL = "google/gemini-3.1-flash-lite"; const SIGNED_IN_LIVE_NOTE_AGENT_MODEL = "google/gemini-3.1-flash-lite"; const SIGNED_IN_AUTO_PERMISSION_DECISION_MODEL = "google/gemini-3.1-flash-lite"; -// 3.5-flash-lite is not on the gateway allowlist (only 3.1-flash-lite and -// full 3.5-flash are) — the gateway 403s "Model not allowed" otherwise. -const SIGNED_IN_CHAT_TITLE_MODEL = "google/gemini-3.5-flash"; +// Must be on the gateway's server-side allowlist or title calls 403 +// "Model not allowed" (and silently keep the placeholder title). +const SIGNED_IN_CHAT_TITLE_MODEL = "google/gemini-3.5-flash-lite"; export type ModelSelection = z.infer;