Add Azure OpenAI as genai provider (#14102)

* add azure openai genai client

* docs
This commit is contained in:
Josh Hawkins
2024-10-01 14:57:40 -05:00
committed by GitHub
parent 5b0c1e5b9e
commit b5f5627ca6
3 changed files with 96 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ __all__ = ["GenAIConfig", "GenAICameraConfig", "GenAIProviderEnum"]
class GenAIProviderEnum(str, Enum):
openai = "openai"
azure_openai = "azure_openai"
gemini = "gemini"
ollama = "ollama"