feat(core): add gpt-5.3-codex model support (#9628)
* feat(core): add gpt-5.3-codex model support Add OpenAI gpt-5.3-codex model: context window overrides, model pricing and capabilities, none-reasoning-effort support, and test config. 🐾 Generated with [Letta Code](https://letta.com) Co-Authored-By: Letta <noreply@letta.com> * just stage-api && just publish-api --------- Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
@@ -88,7 +88,7 @@ def supports_none_reasoning_effort(model: str) -> bool:
|
||||
|
||||
Currently, GPT-5.1 and GPT-5.2 models support the 'none' reasoning effort level.
|
||||
"""
|
||||
return model.startswith("gpt-5.1") or model.startswith("gpt-5.2")
|
||||
return model.startswith("gpt-5.1") or model.startswith("gpt-5.2") or model.startswith("gpt-5.3")
|
||||
|
||||
|
||||
def is_openai_5_model(model: str) -> bool:
|
||||
|
||||
Reference in New Issue
Block a user