Skip to content
Closed
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
92 changes: 0 additions & 92 deletions models/anthropic/claude-sonnet-4-20250514.yaml

This file was deleted.

127 changes: 0 additions & 127 deletions packages/modelparams/src/generated/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3531,133 +3531,6 @@ export const CATALOG = [
}
]
},
{
"provider": "anthropic",
"authType": "api_key",
"model": "claude-sonnet-4-20250514",
"params": [
{
"path": "max_tokens",
"label": "Max tokens",
"description": "Maximum number of output tokens the model may generate.",
"group": "generation_length",
"type": "integer",
"default": 4096,
"range": {
"min": 1
}
},
{
"path": "temperature",
"label": "Temperature",
"description": "Controls randomness. Lower values make outputs more focused; higher values make them more varied.",
"group": "sampling",
"applicability": {
"except": [
{
"thinking.type": [
"enabled"
]
}
]
},
"type": "number",
"default": 1,
"range": {
"min": 0,
"max": 1,
"step": 0.1
}
},
{
"path": "top_p",
"label": "Top P",
"description": "Controls nucleus sampling by limiting generation to tokens whose cumulative probability reaches this value.",
"group": "sampling",
"applicability": {
"except": [
{
"thinking.type": [
"enabled"
]
}
]
},
"type": "number",
"default": 1,
"range": {
"min": 0,
"max": 1,
"step": 0.01
}
},
{
"path": "top_k",
"label": "Top K",
"description": "Limits token sampling to the top K most likely next tokens.",
"group": "sampling",
"applicability": {
"except": {
"thinking.type": [
"enabled"
]
}
},
"type": "integer",
"default": 0,
"range": {
"min": 0
}
},
{
"path": "thinking.type",
"label": "Thinking mode",
"description": "Controls the Anthropic thinking mode values supported by this model.",
"group": "reasoning",
"type": "enum",
"default": "disabled",
"values": [
"disabled",
"enabled"
]
},
{
"path": "thinking.budget_tokens",
"label": "Budget tokens",
"description": "Maximum token budget Anthropic may use for extended thinking before producing the final answer.",
"group": "reasoning",
"applicability": {
"only": {
"thinking.type": "enabled"
}
},
"type": "integer",
"default": 4096,
"range": {
"min": 1024
}
},
{
"path": "thinking.display",
"label": "Thinking display",
"description": "Controls whether Anthropic returns summarized or omitted thinking content.",
"group": "reasoning",
"applicability": {
"only": {
"thinking.type": [
"enabled"
]
}
},
"type": "enum",
"default": "summarized",
"values": [
"summarized",
"omitted"
]
}
]
},
{
"provider": "anthropic",
"authType": "subscription",
Expand Down
9 changes: 0 additions & 9 deletions packages/modelparams/src/generated/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,15 +252,6 @@ export const DEFAULTS = {
"thinking.type": "disabled",
"thinking.budget_tokens": 4096,
},
"anthropic/claude-sonnet-4-20250514": {
max_tokens: 4096,
temperature: 1,
top_p: 1,
top_k: 0,
"thinking.type": "disabled",
"thinking.budget_tokens": 4096,
"thinking.display": "summarized",
},
"anthropic/claude-sonnet-4-20250514-subscription": {
max_tokens: 4096,
temperature: 1,
Expand Down
1 change: 0 additions & 1 deletion packages/modelparams/src/generated/model-ids.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ export const MODEL_IDS = [
"anthropic/claude-opus-4-8",
"anthropic/claude-opus-4-8-subscription",
"anthropic/claude-opus-4-subscription",
"anthropic/claude-sonnet-4-20250514",
"anthropic/claude-sonnet-4-20250514-subscription",
"anthropic/claude-sonnet-4-5",
"anthropic/claude-sonnet-4-5-20250929",
Expand Down
9 changes: 0 additions & 9 deletions packages/modelparams/src/generated/params-by-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -280,15 +280,6 @@ export type ParamsById = {
"thinking.type": "disabled" | "adaptive" | "enabled";
"thinking.budget_tokens": number;
};
"anthropic/claude-sonnet-4-20250514": {
max_tokens: number;
temperature: number;
top_p: number;
top_k: number;
"thinking.type": "disabled" | "enabled";
"thinking.budget_tokens": number;
"thinking.display": "summarized" | "omitted";
};
"anthropic/claude-sonnet-4-20250514-subscription": {
max_tokens: number;
temperature: number;
Expand Down
Loading