Skip to content
Snippets Groups Projects
Unverified Commit fa51d5a4 authored by Martim Santos's avatar Martim Santos Committed by GitHub
Browse files

AzureOpenAI: api_base and azure_endpoint are mutually exclusive (#18037)

parent bf358fa8
No related branches found
No related tags found
No related merge requests found
...@@ -146,9 +146,10 @@ class AzureOpenAI(OpenAI): ...@@ -146,9 +146,10 @@ class AzureOpenAI(OpenAI):
if engine is None: if engine is None:
raise ValueError("You must specify an `engine` parameter.") raise ValueError("You must specify an `engine` parameter.")
azure_endpoint = get_from_param_or_env( if api_base is None:
"azure_endpoint", azure_endpoint, "AZURE_OPENAI_ENDPOINT", "" azure_endpoint = get_from_param_or_env(
) "azure_endpoint", azure_endpoint, "AZURE_OPENAI_ENDPOINT", ""
)
super().__init__( super().__init__(
engine=engine, engine=engine,
......
...@@ -29,7 +29,7 @@ exclude = ["**/BUILD"] ...@@ -29,7 +29,7 @@ exclude = ["**/BUILD"]
license = "MIT" license = "MIT"
name = "llama-index-llms-azure-openai" name = "llama-index-llms-azure-openai"
readme = "README.md" readme = "README.md"
version = "0.3.1" version = "0.3.2"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.9,<4.0" python = ">=3.9,<4.0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment