Compare commits

...
Author SHA1 Message Date
arafatkatze 224f75958e Adding Gpt-oss through groq 2025-08-05 10:48:01 -07:00
arafatkatze 8831854793 Adding Gpt-oss through groq 2025-08-05 10:26:17 -07:00
arafatkatze 00c523916a Adding Gpt-oss through groq 2025-08-05 10:24:05 -07:00
+20
View File
@@ -2562,6 +2562,26 @@ export const cerebrasModels = {
export type GroqModelId = keyof typeof groqModels
export const groqDefaultModelId: GroqModelId = "moonshotai/kimi-k2-instruct"
export const groqModels = {
"openai/gpt-oss-120b": {
maxTokens: 32768,
contextWindow: 131072,
supportsImages: false,
supportsPromptCache: false,
inputPrice: 0.15,
outputPrice: 0.75,
description:
"A state-of-the-art 120B open-weight Mixture-of-Experts language model optimized for strong reasoning, tool use, and efficient deployment on large GPUs",
},
"openai/gpt-oss-20b": {
maxTokens: 32768,
contextWindow: 131072,
supportsImages: false,
supportsPromptCache: false,
inputPrice: 0.1,
outputPrice: 0.5,
description:
"A compact 20B open-weight Mixture-of-Experts language model designed for strong reasoning and tool use, ideal for edge devices and local inference.",
},
// Compound Beta Models - Hybrid architectures optimized for tool use
"compound-beta": {
maxTokens: 8192,