Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions packages/types/src/providers/cerebras.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,14 @@ export const cerebrasModels = {
description: "SOTA performance with ~1500 tokens/s",
supportsReasoningEffort: true,
},
"gpt-oss-120b": {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider maintaining alphabetical order for the model entries. Currently, the models aren't strictly alphabetical, but as the list grows, this could improve maintainability. Would you consider placing this entry in alphabetical order among the other models?

maxTokens: 8000,
contextWindow: 64000,
supportsImages: false,
supportsPromptCache: false,
inputPrice: 0,
outputPrice: 0,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I noticed the PR description mentions "Pricing: Free (/bin/sh)" which appears to be a typo. Is this intentional, or should it be "Free (no cost)" or similar?

description:
"OpenAI GPT OSS model with ~2800 tokens/s\n\n• 64K context window\n• Excels at efficient reasoning across science, math, and coding",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR notes mention "limited tool calling support" for this model. Would it be helpful to add this information to the description field? For example:

},
} as const satisfies Record<string, ModelInfo>
Loading