Skip to content
Open
Show file tree
Hide file tree
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
22 changes: 6 additions & 16 deletions packages/components/models.json
Original file line number Diff line number Diff line change
Expand Up @@ -1714,30 +1714,20 @@
{
"name": "chatCerebras",
"models": [
{
"label": "llama-3.3-70b",
"name": "llama-3.3-70b",
"description": "Best for complex reasoning and long-form content"
},
{
"label": "qwen-3-32b",
"name": "qwen-3-32b",
"description": "Balanced performance for general-purpose tasks"
},
{
"label": "llama3.1-8b",
"name": "llama3.1-8b",
"description": "Fastest model, ideal for simple tasks and high throughput"
},
{
"label": "gpt-oss-120b",
"name": "gpt-oss-120b",
"description": "Largest model for demanding tasks"
"description": "Open-weight reasoning model for coding, math, and agentic workflows"
},
{
"label": "zai-glm-4.7",
"name": "zai-glm-4.7",
"description": "Advanced reasoning and complex problem-solving"
},
{
"label": "gemma-4-31b",
"name": "gemma-4-31b",
"description": "Multimodal reasoning for images, documents, and visual workflows"
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class ChatCerebras_ChatModels implements INode {
name: 'modelName',
type: 'asyncOptions',
loadMethod: 'listModels',
default: 'llama3.1-8b'
default: 'gpt-oss-120b'
},
{
label: 'Temperature',
Expand Down