fix(image_gen): use gpt-5.5 for Codex image host

This commit is contained in:
helix4u 2026-06-06 17:28:50 -06:00 committed by Teknium
parent d17c953a57
commit bb53edc773
2 changed files with 2 additions and 2 deletions

View file

@ -73,7 +73,7 @@ _SIZES = {
# Codex Responses surface used for the request. The chat model itself is only
# the host that calls the ``image_generation`` tool; the actual image work is
# done by ``API_MODEL``.
_CODEX_CHAT_MODEL = "gpt-5.4"
_CODEX_CHAT_MODEL = "gpt-5.5"
_CODEX_BASE_URL = "https://chatgpt.com/backend-api/codex"
_CODEX_INSTRUCTIONS = (
"You are an assistant that must fulfill image generation requests by "