add azure o3 mini (#1711)

This commit is contained in:
Shuchang Zheng
2025-02-04 17:11:29 +08:00
committed by GitHub
parent f0b274d31d
commit 4bdc32ce2c
2 changed files with 32 additions and 0 deletions

View File

@@ -103,6 +103,7 @@ class Settings(BaseSettings):
ENABLE_ANTHROPIC: bool = False
ENABLE_AZURE: bool = False
ENABLE_AZURE_GPT4O_MINI: bool = False
ENABLE_AZURE_O3_MINI: bool = False
ENABLE_BEDROCK: bool = False
ENABLE_GEMINI: bool = False
# OPENAI
@@ -121,6 +122,12 @@ class Settings(BaseSettings):
AZURE_GPT4O_MINI_API_BASE: str | None = None
AZURE_GPT4O_MINI_API_VERSION: str | None = None
# AZURE o3 mini
AZURE_O3_MINI_DEPLOYMENT: str | None = None
AZURE_O3_MINI_API_KEY: str | None = None
AZURE_O3_MINI_API_BASE: str | None = None
AZURE_O3_MINI_API_VERSION: str | None = None
# GEMINI
GEMINI_API_KEY: str | None = None