This commit is contained in:
Flatlogic Bot 2025-11-23 11:06:06 +00:00
parent 83af7f6eb9
commit bfd76773e0
2 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ def _config() -> Dict[str, Any]:
"project_id": project_id,
"project_uuid": os.getenv("PROJECT_UUID"),
"project_header": os.getenv("AI_PROJECT_HEADER", "project-uuid"),
"default_model": os.getenv("AI_DEFAULT_MODEL", "gpt-5-mini"),
"default_model": os.getenv("AI_DEFAULT_MODEL", "gpt-5"),
"timeout": int(os.getenv("AI_TIMEOUT", "30")),
"verify_tls": os.getenv("AI_VERIFY_TLS", "true").lower() not in {"0", "false", "no"},
}