feat: add OpenAI GPT OSS model to Cerebras providers (#6734)

This commit is contained in:
Daniel 2025-08-05 13:25:02 -05:00 committed by GitHub
parent f4b7c895e3
commit 98e0a2d5c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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<string, ModelInfo>