From 945e633c5775ae5e65ba3d3a6a82c9ed7d0ee7d2 Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Fri, 10 Jul 2026 09:47:02 -0700 Subject: [PATCH 1/2] feat(models): add latest Groq and Cerebras models, flag near-term retirements - Groq: add qwen/qwen3.6-27b (Preview, $0.60/$3.00, 131k ctx) - live on console.groq.com/docs/models, not previously in the catalog - Groq: mark meta-llama/llama-4-scout-17b-16e-instruct and qwen/qwen3-32b deprecated - both have an announced shutdown date of July 17, 2026 per Groq's own deprecations page - Cerebras: add gemma-4-31b (Preview, $0.99/$1.49, 131k ctx/40k max output) - live on inference-docs.cerebras.ai, not previously in the catalog Every field independently verified via 2+ live sources (provider docs + pricing pages) before adding; no code changes needed since both providers use generic OpenAI-compatible completions with no per-model special-casing. --- apps/sim/providers/models.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/apps/sim/providers/models.ts b/apps/sim/providers/models.ts index 35dc90369a4..d7284ad9137 100644 --- a/apps/sim/providers/models.ts +++ b/apps/sim/providers/models.ts @@ -2211,6 +2211,20 @@ export const PROVIDER_DEFINITIONS: Record = { contextWindow: 131072, releaseDate: '2025-12-22', }, + { + id: 'cerebras/gemma-4-31b', + pricing: { + input: 0.99, + output: 1.49, + updatedAt: '2026-07-10', + }, + capabilities: { + temperature: { min: 0, max: 2 }, + maxOutputTokens: 40000, + }, + contextWindow: 131072, + releaseDate: '2026-04-02', + }, ], }, groq: { @@ -2282,6 +2296,19 @@ export const PROVIDER_DEFINITIONS: Record = { }, contextWindow: 131072, releaseDate: '2025-04-29', + deprecated: true, + }, + { + id: 'groq/qwen/qwen3.6-27b', + pricing: { + input: 0.6, + output: 3.0, + updatedAt: '2026-07-10', + }, + capabilities: { + maxOutputTokens: 32768, + }, + contextWindow: 131072, }, { id: 'groq/llama-3.1-8b-instant', @@ -2322,6 +2349,7 @@ export const PROVIDER_DEFINITIONS: Record = { }, contextWindow: 131072, releaseDate: '2025-04-05', + deprecated: true, }, { id: 'groq/moonshotai/kimi-k2-instruct-0905', From 12f19c431c4c386ea0f69bcca92bec1460a0097a Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Fri, 10 Jul 2026 09:53:46 -0700 Subject: [PATCH 2/2] fix(models): add verified releaseDate for groq/qwen/qwen3.6-27b Greptile correctly caught that omitting releaseDate causes this model to sort last within the Groq section in the model picker (orderModelIdsByReleaseDate treats a missing date as Number.NEGATIVE_INFINITY) - misleading since it's actually the newest model in the lineup. Verified 2026-04-21 (Qwen's own upstream release date, matching this repo's existing convention of using the model creator's release date rather than a reseller-specific date) via llm-stats.com, cross-checked against two other independent sources. --- apps/sim/providers/models.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/sim/providers/models.ts b/apps/sim/providers/models.ts index d7284ad9137..86912dda877 100644 --- a/apps/sim/providers/models.ts +++ b/apps/sim/providers/models.ts @@ -2309,6 +2309,7 @@ export const PROVIDER_DEFINITIONS: Record = { maxOutputTokens: 32768, }, contextWindow: 131072, + releaseDate: '2026-04-21', }, { id: 'groq/llama-3.1-8b-instant',