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
25 changes: 25 additions & 0 deletions models/openai/gpt-5.2-chat-latest.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# yaml-language-server: $schema=https://modelparams.dev/api/v1/schema.json
provider: openai
authType: api_key
model: gpt-5.2-chat-latest
params:
- path: max_completion_tokens
type: integer
label: Max tokens
description: Maximum number of output tokens the model may generate.
default: 4096
range:
min: 16
group: generation_length
- 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
group: reasoning
33 changes: 33 additions & 0 deletions packages/modelparams/src/generated/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12186,6 +12186,39 @@ export const CATALOG = [
}
]
},
{
"provider": "openai",
"authType": "api_key",
"model": "gpt-5.2-chat-latest",
"params": [
{
"path": "max_completion_tokens",
"label": "Max tokens",
"description": "Maximum number of output tokens the model may generate.",
"group": "generation_length",
"type": "integer",
"default": 4096,
"range": {
"min": 16
}
},
{
"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"
]
}
]
},
{
"provider": "openai",
"authType": "subscription",
Expand Down
4 changes: 4 additions & 0 deletions packages/modelparams/src/generated/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -956,6 +956,10 @@ export const DEFAULTS = {
max_completion_tokens: 4096,
reasoning_effort: "medium",
},
"openai/gpt-5.2-chat-latest": {
max_completion_tokens: 4096,
reasoning_effort: "medium",
},
"openai/gpt-5.2-codex-subscription": {
"reasoning.effort": "medium",
"reasoning.summary": "auto",
Expand Down
1 change: 1 addition & 0 deletions packages/modelparams/src/generated/model-ids.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ export const MODEL_IDS = [
"openai/gpt-5.1-codex-max-subscription",
"openai/gpt-5.1-codex-subscription",
"openai/gpt-5.2",
"openai/gpt-5.2-chat-latest",
"openai/gpt-5.2-codex-subscription",
"openai/gpt-5.2-subscription",
"openai/gpt-5.3-codex",
Expand Down
4 changes: 4 additions & 0 deletions packages/modelparams/src/generated/params-by-id.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1164,6 +1164,10 @@ export type ParamsById = {
max_completion_tokens: number;
reasoning_effort: "none" | "low" | "medium" | "high" | "xhigh";
};
"openai/gpt-5.2-chat-latest": {
max_completion_tokens: number;
reasoning_effort: "none" | "low" | "medium" | "high" | "xhigh";
};
"openai/gpt-5.2-codex-subscription": {
"reasoning.effort": "minimal" | "low" | "medium" | "high" | "xhigh";
"reasoning.summary": "auto" | "concise" | "detailed" | "none";
Expand Down
Loading