fix(codex): align OAuth defaults and setup docs (#4910)

* fix(codex): align OAuth defaults and setup docs

* docs(codex): clarify provider settings key

* docs(codex): simplify OAuth setup guidance
This commit is contained in:
chengyongru
2026-07-13 17:04:33 +08:00
committed by GitHub
parent 8c9110fee3
commit 234e895e5a
9 changed files with 46 additions and 83 deletions
+1 -1
View File
@@ -2646,7 +2646,7 @@ _PROVIDER_DISPLAY: dict[str, str] = {
}
_OAUTH_PROVIDER_DEFAULT_MODELS: dict[str, str] = {
"openai_codex": "openai-codex/gpt-5.4-mini",
"openai_codex": "openai-codex/gpt-5.6-sol",
"github_copilot": "github-copilot/gpt-5.4-mini",
}
+1 -1
View File
@@ -35,7 +35,7 @@ class OpenAICodexProvider(LLMProvider):
def __init__(
self,
default_model: str = "openai-codex/gpt-5.1-codex",
default_model: str = "openai-codex/gpt-5.6-sol",
proxy: str | None = None,
):
super().__init__(api_key=None, api_base=None)