diff --git a/backend/app/models/llm/request.py b/backend/app/models/llm/request.py index 227b83cf6..59242006e 100644 --- a/backend/app/models/llm/request.py +++ b/backend/app/models/llm/request.py @@ -42,7 +42,9 @@ class TextLLMParams(SQLModel): default=None, description="Reasoning configuration or instructions", ) - effort: Literal["none", "minimal", "low", "medium", "high", "xhigh"] | None = Field( + effort: Literal[ + "none", "minimal", "low", "medium", "high", "xhigh", "max" + ] | None = Field( default=None, description="Model-specific reasoning effort setting for reasoning-capable models", )