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

@@ -85,7 +85,7 @@ def main() -> None:
)
p_serve.add_argument(
"--reasoning-effort",
choices=["low", "medium", "high", "none"],
choices=["minimal", "low", "medium", "high"],
default=os.getenv("CHATGPT_LOCAL_REASONING_EFFORT", "medium").lower(),
help="Reasoning effort level for Responses API (default: medium)",
)