Skip to content

feat(github-copilot): add gpt-5.3-codex model#857

Merged
thdxr merged 2 commits intoanomalyco:devfrom
hyf0:fix/github-copilot-gpt-5-3-codex
Feb 12, 2026
Merged

feat(github-copilot): add gpt-5.3-codex model#857
thdxr merged 2 commits intoanomalyco:devfrom
hyf0:fix/github-copilot-gpt-5-3-codex

Conversation

@hyf0
Copy link
Copy Markdown
Contributor

@hyf0 hyf0 commented Feb 11, 2026

Summary

  • add providers/github-copilot/models/gpt-5.3-codex.toml
  • mirror capabilities/limits/cost structure from existing gpt-5.2-codex Copilot entry
  • align metadata with existing repo conventions:
    • release_date / last_updated set to 2026-02-05 (model release date)
    • Copilot GA/rollout date (2026-02-09) is channel availability, not model release metadata
  • keep knowledge = 2025-08-31 and limit = 272k/128k, consistent with existing OpenAI/Copilot GPT-5.2+ codex entries

Validation

  • ran bun validate

Context

Copilot AI review requested due to automatic review settings February 11, 2026 16:00
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Adds a new GitHub Copilot model catalog entry for GPT-5.3-Codex, mirroring the existing gpt-5.2-codex capabilities/limits/cost metadata so downstream consumers can discover the new model via models.dev.

Changes:

  • Add providers/github-copilot/models/gpt-5.3-codex.toml model definition.
  • Set release_date / last_updated to 2026-02-09 and keep limits/capabilities consistent with gpt-5.2-codex.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@longsman
Copy link
Copy Markdown

When do these typically get merged/released? not complaining/rushing just want to understand cadence.

@esafak
Copy link
Copy Markdown
Contributor

esafak commented Feb 11, 2026

Usually in a day or two.

@rekram1-node
Copy link
Copy Markdown
Contributor

5.3 codex isn't generally available yet it seems?

I cannot access it myself so If I test this it doesnt work

@TheEpTic
Copy link
Copy Markdown
Contributor

Just got 5.3-codex on VSCode, and works. Seems like the rollout is happening, double check now @rekram1-node

@thdxr thdxr merged commit 27abb8a into anomalyco:dev Feb 12, 2026
1 check passed
@sahilchouksey
Copy link
Copy Markdown

It still isn’t generally available
image

@longsman
Copy link
Copy Markdown

It still isn’t generally available

image

Works for me, I did opencode models --refresh and upgraded opencode and started new instance/servers

@sahilchouksey
Copy link
Copy Markdown

tried the above and re-authenticated - still not working
looks like the rollout is still ongoing

It still isn’t generally available
image

Works for me, I did opencode models --refresh and upgraded opencode and started new instance/servers

@nalejandroveron
Copy link
Copy Markdown

Something may be wrong, the model already works for me in VSCode and Zed, but not Opencode

@vikassandhu999
Copy link
Copy Markdown

Something may be wrong, the model already works for me in VSCode and Zed, but not Opencode

Similar here, model is working in VSCode but no in Opencode.

@sahilchouksey
Copy link
Copy Markdown

yes guys, this is weird
It's not even showing on the github website but it is showing and working in VSCode
image

@pawelataman
Copy link
Copy Markdown

pawelataman commented Feb 12, 2026

image

Seems that there is still some issue on this. It works in vscode gh copilot extension. Opencode version 1.1.60

@thetanav
Copy link
Copy Markdown

@rekram1-node Its still not working
image

@rekram1-node
Copy link
Copy Markdown
Contributor

ill just remove it, there is a reason I didn't merge this haha

Dax merged it

rekram1-node added a commit that referenced this pull request Feb 12, 2026
@kaykhan
Copy link
Copy Markdown

kaykhan commented Feb 12, 2026

@rekram1-node Its being rolled out gradually by github, as of today im able to see it in my github settings and ive enabld it. Now the only thing blocking me from using it is not being able to see it appear in opencode. i think this should be remerged so the people its been rolled out to can begin using it? Or is there a workaround? The context window fyi is also 400k

@rekram1-node
Copy link
Copy Markdown
Contributor

Even the people who could use it in vscode couldn't in opencode..

@makandz
Copy link
Copy Markdown

makandz commented Feb 12, 2026

Since it's been removed from models.dev, is there a way that we can force OpenCode to display it so we can see if it works?

I wasn't able to see it at all today despite it being in the GitHub settings but just recently got it enabled in the Copilot CLI (within the past hour).

@rekram1-node
Copy link
Copy Markdown
Contributor

{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "github-copilot": {
      "models": {
        "gpt-5.3-codex": {},
      },
    },
  },
}

@anomalyco anomalyco deleted a comment from opencode-agent bot Feb 12, 2026
@anomalyco anomalyco deleted a comment from opencode-agent bot Feb 12, 2026
@sahilchouksey
Copy link
Copy Markdown

sahilchouksey commented Feb 13, 2026

Hey folks! I've identified why gpt-5.3-codex works in VSCode but not OpenCode.

Root cause: Two issues in OpenCode:

  1. Built-in copilot plugin uses wrong OAuth client ID (Ov23... instead of Iv1...)
  2. Config-defined models fall back to wrong SDK without /responses endpoint support

Fix PR: anomalyco/opencode#13485

Workaround until merged: Add to your opencode.json:

{
  "plugin": ["opencode-copilot-auth@latest"],
  "provider": {
    "github-copilot": {
      "models": {
        "gpt-5.3-codex": {
            "modalities": {
              "input": ["text", "image"],
              "output": ["text"]
            }
        }
      }
    }
  }
}

The external plugin uses the correct GitHub App client ID that supports token exchange for advanced models.

image

@anomalyco anomalyco deleted a comment from opencode-agent bot Feb 13, 2026
@anomalyco anomalyco deleted a comment from opencode-agent bot Feb 13, 2026
@rekram1-node
Copy link
Copy Markdown
Contributor

Um no the oauth id is very much correct. We have our own github app and the copilot team specifically asked us NOT to use their oauth id.

So that is incorrect.

@sahilchouksey
Copy link
Copy Markdown

sahilchouksey commented Feb 14, 2026

@rekram1-node you're right about the OAuth id.. my mistake on that
but gpt-5.3-codex works with vs code's OAuth but isn't available yet with opencode's OAuth, so for now users who want to use this model will need to use vs code auth (opencode-copilot-auth).
might be worth reaching out to the copilot team to check when gpt-5.3-codex will be enabled for opencode's OAuth app.

@JReis23
Copy link
Copy Markdown

JReis23 commented Feb 15, 2026

Quick question.

Even after the merge, I'm facing the same problem:

image

Is there something that I need to do to make it work?

@TheEpTic
Copy link
Copy Markdown
Contributor

TheEpTic commented Feb 15, 2026

@rekram1-node you're right about the OAuth id.. my mistake on that but gpt-5.3-codex works with vs code's OAuth but isn't available yet with opencode's OAuth, so for now users who want to use this model will need to use vs code auth (opencode-copilot-auth). might be worth reaching out to the copilot team to check when gpt-5.3-codex will be enabled for opencode's OAuth app.

It's permission gated for a reason, they'll maybe add opencode to it soon. I wouldn't advise using that oauth plugin (assuming you mean the old one with the old id), they issued the new opencode one for a reason, they can and will ban for the old one.

@rekram1-node
Copy link
Copy Markdown
Contributor

it ahould be available this week possibly we dont have a clear eta on it we just know github is rolling it out slowly

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.