-
Notifications
You must be signed in to change notification settings - Fork 2.6k
feat: add openai/gpt-oss-120b model to Chutes provider #6974
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,6 +29,7 @@ export type ChutesModelId = | |
| | "zai-org/GLM-4.5-Air" | ||
| | "zai-org/GLM-4.5-FP8" | ||
| | "moonshotai/Kimi-K2-Instruct-75k" | ||
| | "openai/gpt-oss-120b" | ||
|
|
||
| export const chutesDefaultModelId: ChutesModelId = "deepseek-ai/DeepSeek-R1-0528" | ||
|
|
||
|
|
@@ -278,4 +279,13 @@ export const chutesModels = { | |
| outputPrice: 0.5926, | ||
| description: "Moonshot AI Kimi K2 Instruct model with 75k context window.", | ||
| }, | ||
| "openai/gpt-oss-120b": { | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I notice that
Is this intentional? Different providers might have different limits, but we should verify these values are correct for the Chutes API specifically. |
||
| maxTokens: 32768, | ||
| contextWindow: 131072, | ||
| supportsImages: false, | ||
| supportsPromptCache: false, | ||
| inputPrice: 0, | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The pricing is set to 0 for both input and output. Could we verify if Chutes actually offers this model for free, or if we need to add the correct pricing? Groq charges /bin/sh.15//bin/sh.75 for the same model. |
||
| outputPrice: 0, | ||
| description: "OpenAI GPT OSS 120B model - latest open source coding model.", | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The description differs from other providers:
Should we align these descriptions for consistency? |
||
| }, | ||
| } as const satisfies Record<string, ModelInfo> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Has it been confirmed that the
openai/gpt-oss-120bmodel is actually available on the Chutes API? The naming pattern differs from other Chutes models which typically use organization prefixes like "deepseek-ai/", "unsloth/", "chutesai/", etc. We should verify this model exists on their API before merging.