From 98e0a2d5c60de56ca5156ca4987ce06021935296 Mon Sep 17 00:00:00 2001 From: Daniel <57051444+daniel-lxs@users.noreply.github.com> Date: Tue, 5 Aug 2025 13:25:02 -0500 Subject: [PATCH] feat: add OpenAI GPT OSS model to Cerebras providers (#6734) --- packages/types/src/providers/cerebras.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/packages/types/src/providers/cerebras.ts b/packages/types/src/providers/cerebras.ts index 2bec81562b..4765302a4e 100644 --- a/packages/types/src/providers/cerebras.ts +++ b/packages/types/src/providers/cerebras.ts @@ -63,4 +63,14 @@ export const cerebrasModels = { description: "SOTA performance with ~1500 tokens/s", supportsReasoningEffort: true, }, + "gpt-oss-120b": { + maxTokens: 8000, + contextWindow: 64000, + supportsImages: false, + supportsPromptCache: false, + inputPrice: 0, + outputPrice: 0, + description: + "OpenAI GPT OSS model with ~2800 tokens/s\n\n• 64K context window\n• Excels at efficient reasoning across science, math, and coding", + }, } as const satisfies Record