Skip to content
Merged
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
45 changes: 45 additions & 0 deletions models/anthropic/claude-fable-5-subscription.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# yaml-language-server: $schema=https://modelparams.dev/api/v1/schema.json
provider: anthropic
authType: subscription
model: claude-fable-5
params:
- path: max_tokens
type: integer
label: Max tokens
description: Maximum number of output tokens the model may generate.
default: 4096
range:
min: 1
group: generation_length
- path: thinking.type
type: enum
label: Thinking mode
description: Only adaptive thinking is supported; omit the parameter entirely to run without thinking (an explicit disabled value is rejected).
values:
- adaptive
group: reasoning
- path: thinking.display
type: enum
label: Thinking display
description: Controls whether Anthropic returns summarized or omitted thinking content.
default: omitted
values:
- summarized
- omitted
group: reasoning
applicability:
only:
thinking.type:
- adaptive
- path: output_config.effort
type: enum
label: Effort
description: Controls Anthropic response thoroughness and token spend.
default: high
values:
- low
- medium
- high
- xhigh
- max
group: reasoning
45 changes: 45 additions & 0 deletions models/anthropic/claude-fable-5.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# yaml-language-server: $schema=https://modelparams.dev/api/v1/schema.json
provider: anthropic
authType: api_key
model: claude-fable-5
params:
- path: max_tokens
type: integer
label: Max tokens
description: Maximum number of output tokens the model may generate.
default: 4096
range:
min: 1
group: generation_length
- path: thinking.type
type: enum
label: Thinking mode
description: Only adaptive thinking is supported; omit the parameter entirely to run without thinking (an explicit disabled value is rejected).
values:
- adaptive
group: reasoning
- path: thinking.display
type: enum
label: Thinking display
description: Controls whether Anthropic returns summarized or omitted thinking content.
default: omitted
values:
- summarized
- omitted
group: reasoning
applicability:
only:
thinking.type:
- adaptive
- path: output_config.effort
type: enum
label: Effort
description: Controls Anthropic response thoroughness and token spend.
default: high
values:
- low
- medium
- high
- xhigh
- max
group: reasoning
124 changes: 124 additions & 0 deletions packages/modelparams/src/generated/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1204,6 +1204,130 @@ export const CATALOG = [
}
]
},
{
"provider": "anthropic",
"authType": "api_key",
"model": "claude-fable-5",
"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": "thinking.type",
"label": "Thinking mode",
"description": "Only adaptive thinking is supported; omit the parameter entirely to run without thinking (an explicit disabled value is rejected).",
"group": "reasoning",
"type": "enum",
"values": [
"adaptive"
]
},
{
"path": "thinking.display",
"label": "Thinking display",
"description": "Controls whether Anthropic returns summarized or omitted thinking content.",
"group": "reasoning",
"applicability": {
"only": {
"thinking.type": [
"adaptive"
]
}
},
"type": "enum",
"default": "omitted",
"values": [
"summarized",
"omitted"
]
},
{
"path": "output_config.effort",
"label": "Effort",
"description": "Controls Anthropic response thoroughness and token spend.",
"group": "reasoning",
"type": "enum",
"default": "high",
"values": [
"low",
"medium",
"high",
"xhigh",
"max"
]
}
]
},
{
"provider": "anthropic",
"authType": "subscription",
"model": "claude-fable-5",
"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": "thinking.type",
"label": "Thinking mode",
"description": "Only adaptive thinking is supported; omit the parameter entirely to run without thinking (an explicit disabled value is rejected).",
"group": "reasoning",
"type": "enum",
"values": [
"adaptive"
]
},
{
"path": "thinking.display",
"label": "Thinking display",
"description": "Controls whether Anthropic returns summarized or omitted thinking content.",
"group": "reasoning",
"applicability": {
"only": {
"thinking.type": [
"adaptive"
]
}
},
"type": "enum",
"default": "omitted",
"values": [
"summarized",
"omitted"
]
},
{
"path": "output_config.effort",
"label": "Effort",
"description": "Controls Anthropic response thoroughness and token spend.",
"group": "reasoning",
"type": "enum",
"default": "high",
"values": [
"low",
"medium",
"high",
"xhigh",
"max"
]
}
]
},
{
"provider": "anthropic",
"authType": "api_key",
Expand Down
10 changes: 10 additions & 0 deletions packages/modelparams/src/generated/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,16 @@ export const DEFAULTS = {
top_p: 1,
top_k: 0,
},
"anthropic/claude-fable-5": {
max_tokens: 4096,
"thinking.display": "omitted",
"output_config.effort": "high",
},
"anthropic/claude-fable-5-subscription": {
max_tokens: 4096,
"thinking.display": "omitted",
"output_config.effort": "high",
},
"anthropic/claude-haiku-4": {
max_tokens: 4096,
temperature: 1,
Expand Down
2 changes: 2 additions & 0 deletions packages/modelparams/src/generated/model-ids.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ export const MODEL_IDS = [
"anthropic/claude-3-7-sonnet-latest",
"anthropic/claude-3-opus-20240229",
"anthropic/claude-3-opus-latest",
"anthropic/claude-fable-5",
"anthropic/claude-fable-5-subscription",
"anthropic/claude-haiku-4",
"anthropic/claude-haiku-4-5",
"anthropic/claude-haiku-4-5-20251001",
Expand Down
12 changes: 12 additions & 0 deletions packages/modelparams/src/generated/params-by-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,18 @@ export type ParamsById = {
top_p: number;
top_k: number;
};
"anthropic/claude-fable-5": {
max_tokens: number;
"thinking.type": "adaptive";
"thinking.display": "summarized" | "omitted";
"output_config.effort": "low" | "medium" | "high" | "xhigh" | "max";
};
"anthropic/claude-fable-5-subscription": {
max_tokens: number;
"thinking.type": "adaptive";
"thinking.display": "summarized" | "omitted";
"output_config.effort": "low" | "medium" | "high" | "xhigh" | "max";
};
"anthropic/claude-haiku-4": {
max_tokens: number;
temperature: number;
Expand Down
Loading