Skip to content
Closed
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
23 changes: 23 additions & 0 deletions providers/github-copilot/models/gpt-5.3-codex.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name = "GPT-5.3-Codex"
family = "gpt-codex"
release_date = "2026-02-05"
last_updated = "2026-02-05"
attachment = false
reasoning = true
temperature = false
Copy link

Copilot AI Feb 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing 'knowledge' field that is present in almost all other GitHub Copilot model configurations. This field specifies the knowledge cutoff date for the model's training data and should be added for consistency. For reference, gpt-5.2-codex has 'knowledge = "2025-08-31"' and gpt-5.1-codex has 'knowledge = "2024-09-30"'. The field should be placed between the 'temperature' and 'tool_call' fields following the established convention.

Suggested change
temperature = false
temperature = false
knowledge = "2026-02-05"

Copilot uses AI. Check for mistakes.
knowledge = "2025-08-31"
tool_call = true
structured_output = true
open_weights = false

[cost]
input = 0
output = 0

[limit]
context = 400_000
output = 128_000

[modalities]
input = ["text", "image"]
output = ["text"]