added "minimal" reasoning option (better for coding)

This commit is contained in:
Game_Time
2025-08-20 11:41:10 +05:00
parent 8129b62083
commit fc9727cb73
5 changed files with 5 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ def build_reasoning_param(
effort = (base_effort or "").strip().lower()
summary = (base_summary or "").strip().lower()
valid_efforts = {"low", "medium", "high", "none"}
valid_efforts = {"minimal", "low", "medium", "high"}
valid_summaries = {"auto", "concise", "detailed", "none"}
if isinstance(overrides, dict):