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
38 changes: 38 additions & 0 deletions models/openai/gpt-5.6-luna-subscription.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# yaml-language-server: $schema=https://modelparams.dev/api/v1/schema.json
provider: openai
authType: subscription
model: gpt-5.6-luna
params:
- path: reasoning.effort
type: enum
label: Reasoning effort
description: Controls how much reasoning the model should perform before producing an answer.
default: medium
values:
- none
- low
- medium
- high
- xhigh
- max
group: reasoning
- path: reasoning.summary
type: enum
label: Reasoning summary
description: Controls the level of reasoning summary returned with the response.
default: auto
values:
- auto
- concise
- detailed
group: reasoning
- path: text.verbosity
type: enum
label: Verbosity
description: Controls how concise or detailed the model's final text response should be.
default: medium
values:
- low
- medium
- high
group: output_format
38 changes: 38 additions & 0 deletions models/openai/gpt-5.6-sol-subscription.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# yaml-language-server: $schema=https://modelparams.dev/api/v1/schema.json
provider: openai
authType: subscription
model: gpt-5.6-sol
params:
- path: reasoning.effort
type: enum
label: Reasoning effort
description: Controls how much reasoning the model should perform before producing an answer.
default: medium
values:
- none
- low
- medium
- high
- xhigh
- max
group: reasoning
- path: reasoning.summary
type: enum
label: Reasoning summary
description: Controls the level of reasoning summary returned with the response.
default: auto
values:
- auto
- concise
- detailed
group: reasoning
- path: text.verbosity
type: enum
label: Verbosity
description: Controls how concise or detailed the model's final text response should be.
default: medium
values:
- low
- medium
- high
group: output_format
38 changes: 38 additions & 0 deletions models/openai/gpt-5.6-terra-subscription.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# yaml-language-server: $schema=https://modelparams.dev/api/v1/schema.json
provider: openai
authType: subscription
model: gpt-5.6-terra
params:
- path: reasoning.effort
type: enum
label: Reasoning effort
description: Controls how much reasoning the model should perform before producing an answer.
default: medium
values:
- none
- low
- medium
- high
- xhigh
- max
group: reasoning
- path: reasoning.summary
type: enum
label: Reasoning summary
description: Controls the level of reasoning summary returned with the response.
default: auto
values:
- auto
- concise
- detailed
group: reasoning
- path: text.verbosity
type: enum
label: Verbosity
description: Controls how concise or detailed the model's final text response should be.
default: medium
values:
- low
- medium
- high
group: output_format
147 changes: 147 additions & 0 deletions packages/modelparams/src/generated/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12881,6 +12881,55 @@ export const CATALOG = [
}
]
},
{
"provider": "openai",
"authType": "subscription",
"model": "gpt-5.6-luna",
"params": [
{
"path": "reasoning.effort",
"label": "Reasoning effort",
"description": "Controls how much reasoning the model should perform before producing an answer.",
"group": "reasoning",
"type": "enum",
"default": "medium",
"values": [
"none",
"low",
"medium",
"high",
"xhigh",
"max"
]
},
{
"path": "reasoning.summary",
"label": "Reasoning summary",
"description": "Controls the level of reasoning summary returned with the response.",
"group": "reasoning",
"type": "enum",
"default": "auto",
"values": [
"auto",
"concise",
"detailed"
]
},
{
"path": "text.verbosity",
"label": "Verbosity",
"description": "Controls how concise or detailed the model's final text response should be.",
"group": "output_format",
"type": "enum",
"default": "medium",
"values": [
"low",
"medium",
"high"
]
}
]
},
{
"provider": "openai",
"authType": "api_key",
Expand Down Expand Up @@ -12913,6 +12962,55 @@ export const CATALOG = [
}
]
},
{
"provider": "openai",
"authType": "subscription",
"model": "gpt-5.6-sol",
"params": [
{
"path": "reasoning.effort",
"label": "Reasoning effort",
"description": "Controls how much reasoning the model should perform before producing an answer.",
"group": "reasoning",
"type": "enum",
"default": "medium",
"values": [
"none",
"low",
"medium",
"high",
"xhigh",
"max"
]
},
{
"path": "reasoning.summary",
"label": "Reasoning summary",
"description": "Controls the level of reasoning summary returned with the response.",
"group": "reasoning",
"type": "enum",
"default": "auto",
"values": [
"auto",
"concise",
"detailed"
]
},
{
"path": "text.verbosity",
"label": "Verbosity",
"description": "Controls how concise or detailed the model's final text response should be.",
"group": "output_format",
"type": "enum",
"default": "medium",
"values": [
"low",
"medium",
"high"
]
}
]
},
{
"provider": "openai",
"authType": "api_key",
Expand Down Expand Up @@ -12945,6 +13043,55 @@ export const CATALOG = [
}
]
},
{
"provider": "openai",
"authType": "subscription",
"model": "gpt-5.6-terra",
"params": [
{
"path": "reasoning.effort",
"label": "Reasoning effort",
"description": "Controls how much reasoning the model should perform before producing an answer.",
"group": "reasoning",
"type": "enum",
"default": "medium",
"values": [
"none",
"low",
"medium",
"high",
"xhigh",
"max"
]
},
{
"path": "reasoning.summary",
"label": "Reasoning summary",
"description": "Controls the level of reasoning summary returned with the response.",
"group": "reasoning",
"type": "enum",
"default": "auto",
"values": [
"auto",
"concise",
"detailed"
]
},
{
"path": "text.verbosity",
"label": "Verbosity",
"description": "Controls how concise or detailed the model's final text response should be.",
"group": "output_format",
"type": "enum",
"default": "medium",
"values": [
"low",
"medium",
"high"
]
}
]
},
{
"provider": "openai",
"authType": "api_key",
Expand Down
15 changes: 15 additions & 0 deletions packages/modelparams/src/generated/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1033,14 +1033,29 @@ export const DEFAULTS = {
max_completion_tokens: 4096,
reasoning_effort: "none",
},
"openai/gpt-5.6-luna-subscription": {
"reasoning.effort": "medium",
"reasoning.summary": "auto",
"text.verbosity": "medium",
},
"openai/gpt-5.6-sol": {
max_completion_tokens: 4096,
reasoning_effort: "none",
},
"openai/gpt-5.6-sol-subscription": {
"reasoning.effort": "medium",
"reasoning.summary": "auto",
"text.verbosity": "medium",
},
"openai/gpt-5.6-terra": {
max_completion_tokens: 4096,
reasoning_effort: "none",
},
"openai/gpt-5.6-terra-subscription": {
"reasoning.effort": "medium",
"reasoning.summary": "auto",
"text.verbosity": "medium",
},
"openai/o1": {
max_completion_tokens: 4096,
reasoning_effort: "medium",
Expand Down
3 changes: 3 additions & 0 deletions packages/modelparams/src/generated/model-ids.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,8 +167,11 @@ export const MODEL_IDS = [
"openai/gpt-5.5-pro-subscription",
"openai/gpt-5.5-subscription",
"openai/gpt-5.6-luna",
"openai/gpt-5.6-luna-subscription",
"openai/gpt-5.6-sol",
"openai/gpt-5.6-sol-subscription",
"openai/gpt-5.6-terra",
"openai/gpt-5.6-terra-subscription",
"openai/o1",
"openai/o1-mini",
"openai/o1-preview",
Expand Down
15 changes: 15 additions & 0 deletions packages/modelparams/src/generated/params-by-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1241,14 +1241,29 @@ export type ParamsById = {
max_completion_tokens: number;
reasoning_effort: "none" | "low" | "medium" | "high";
};
"openai/gpt-5.6-luna-subscription": {
"reasoning.effort": "none" | "low" | "medium" | "high" | "xhigh" | "max";
"reasoning.summary": "auto" | "concise" | "detailed";
"text.verbosity": "low" | "medium" | "high";
};
"openai/gpt-5.6-sol": {
max_completion_tokens: number;
reasoning_effort: "none" | "low" | "medium" | "high";
};
"openai/gpt-5.6-sol-subscription": {
"reasoning.effort": "none" | "low" | "medium" | "high" | "xhigh" | "max";
"reasoning.summary": "auto" | "concise" | "detailed";
"text.verbosity": "low" | "medium" | "high";
};
"openai/gpt-5.6-terra": {
max_completion_tokens: number;
reasoning_effort: "none" | "low" | "medium" | "high";
};
"openai/gpt-5.6-terra-subscription": {
"reasoning.effort": "none" | "low" | "medium" | "high" | "xhigh" | "max";
"reasoning.summary": "auto" | "concise" | "detailed";
"text.verbosity": "low" | "medium" | "high";
};
"openai/o1": {
max_completion_tokens: number;
reasoning_effort: "low" | "medium" | "high" | "xhigh";
Expand Down
Loading