Skip to content

Commit

Permalink
revert some changes
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich committed Feb 28, 2024
1 parent 0c36d44 commit 57ac6dd
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class AzureOpenAI(OpenAI):
description="Indicates if Microsoft Entra ID (former Azure AD) is used for token authentication"
)

_azure_ad_token: Any = PrivateAttr()
_azure_ad_token: Any = PrivateAttr(default=None)
_client: SyncAzureOpenAI = PrivateAttr()
_aclient: AsyncAzureOpenAI = PrivateAttr()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class AzureOpenAIMultiModal(OpenAIMultiModal):
description="Indicates if Microsoft Entra ID (former Azure AD) is used for token authentication"
)

_azure_ad_token: Any = PrivateAttr()
_azure_ad_token: Any = PrivateAttr(default=None)

def __init__(
self,
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ llama-index-multi-modal-llms-openai = "^0.1.3"
llama-index-cli = "^0.1.2"

[tool.poetry.group.dev.dependencies]
azure-identity = ">=1.15.0"
black = {extras = ["jupyter"], version = "<=23.9.1,>=23.7.0"}
codespell = {extras = ["toml"], version = ">=v2.2.6"}
mypy = "0.991"
Expand Down

0 comments on commit 57ac6dd

Please sign in to comment.