forked from openai/codex
-
Notifications
You must be signed in to change notification settings - Fork 199
Open
Description
Hi again,
pqq allows api access to 300+ models.
How would I configure those as agents ?
I replaced the names with the correct ppq model-names, however when running /code,
gpt-5.2 codex fails, because it´s looking for a different model name. The other two are working, because names are matching. how can I define the model name ? thanks
PS: Of course defining claude, gemini and deepseek like this would be the end game
error:
ERROR: [transport] failed to start stream: unexpected status 400 Bad Request: {"error":{"message":"gpt-5.2-codex is not a valid model │ │
│ │ │││ ID","code":400},"user_id":"org_32qOW1I73j3e9xJURsVRS7t8xQ"}
toml
[[agents]]
name = "gpt-5.1-codex-mini"
enabled = true
args-read-only = ["-s", "read-only", "exec", "--skip-git-repo-check"]
args-write = ["-s", "workspace-write", "--dangerously-bypass-approvals-and-sandbox", "exec", "--skip-git-repo-check"]
description = "Budget coding agent for small changes and quick refactors; use when speed and cost matter."
command = "coder"
[[agents]]
name = "gpt-5.1-codex"
enabled = true
args-read-only = ["-s", "read-only", "exec", "--skip-git-repo-check"]
args-write = ["-s", "workspace-write", "--dangerously-bypass-approvals-and-sandbox", "exec", "--skip-git-repo-check"]
description = "Primary coding agent for implementation and multi-file edits; strong speed and reliability."
command = "coder"
[[agents]]
name = "openai/gpt-5.2"
enabled = true
args-read-only = ["-s", "read-only", "exec", "--skip-git-repo-check"]
args-write = ["-s", "workspace-write", "--dangerously-bypass-approvals-and-sandbox", "exec", "--skip-git-repo-check"]
description = "Highest-capacity GPT option for tricky reasoning; use when correctness matters most."
command = "coder"
Metadata
Metadata
Assignees
Labels
No labels