add support for gpt 5.1 (#4197)

This commit is contained in:
Shuchang Zheng
2025-12-04 17:08:16 -05:00
committed by GitHub
parent 944c95f456
commit 43e89d2991
2 changed files with 44 additions and 0 deletions

View File

@@ -281,6 +281,13 @@ class Settings(BaseSettings):
AZURE_GPT5_NANO_API_BASE: str | None = None
AZURE_GPT5_NANO_API_VERSION: str = "2025-04-01-preview"
# AZURE gpt-5.1
ENABLE_AZURE_GPT5_1: bool = False
AZURE_GPT5_1_DEPLOYMENT: str = "gpt-5.1"
AZURE_GPT5_1_API_KEY: str | None = None
AZURE_GPT5_1_API_BASE: str | None = None
AZURE_GPT5_1_API_VERSION: str = "2025-04-01-preview"
# GEMINI
GEMINI_API_KEY: str | None = None
GEMINI_INCLUDE_THOUGHT: bool = False