Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ curl http://127.0.0.1:8000/v1/chat/completions \

## Supported Models

- `gpt-5.5`
- `gpt-5.4`
- `gpt-5.4-mini`
- `gpt-5.2`
Expand Down
7 changes: 7 additions & 0 deletions chatmock/model_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ class ModelSpec:
allowed_efforts=frozenset(("low", "medium", "high", "xhigh")),
variant_efforts=("xhigh", "high", "medium", "low"),
),
ModelSpec(
public_id="gpt-5.5",
upstream_id="gpt-5.5",
aliases=("gpt5.5", "gpt-5.5-latest"),
allowed_efforts=frozenset(("none", "low", "medium", "high", "xhigh")),
variant_efforts=("xhigh", "high", "medium", "low", "none"),
),
Comment thread
himalalps marked this conversation as resolved.
ModelSpec(
public_id="gpt-5.3-codex",
upstream_id="gpt-5.3-codex",
Expand Down
Loading