Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dlqqq committed May 20, 2024
1 parent 377323e commit 48c4908
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ class AzureChatOpenAIProvider(BaseProvider, AzureChatOpenAI):
pypi_package_deps = ["langchain_openai"]
# Confusingly, langchain uses both OPENAI_API_KEY and AZURE_OPENAI_API_KEY for azure
# https://github.com/langchain-ai/langchain/blob/f2579096993ae460516a0aae1d3e09f3eb5c1772/libs/partners/openai/langchain_openai/llms/azure.py#L85
auth_strategy = EnvAuthStrategy(name="AZURE_OPENAI_API_KEY", keyword_param="openai_api_key")
auth_strategy = EnvAuthStrategy(
name="AZURE_OPENAI_API_KEY", keyword_param="openai_api_key"
)
registry = True

fields = [
Expand Down
5 changes: 1 addition & 4 deletions packages/jupyter-ai-magics/jupyter_ai_magics/providers.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,7 @@
from langchain.schema.output_parser import StrOutputParser
from langchain.schema.runnable import Runnable
from langchain.utils import get_from_dict_or_env
from langchain_community.chat_models import (
BedrockChat,
QianfanChatEndpoint,
)
from langchain_community.chat_models import BedrockChat, QianfanChatEndpoint
from langchain_community.llms import (
AI21,
Bedrock,
Expand Down
5 changes: 4 additions & 1 deletion packages/jupyter-ai/jupyter_ai/config_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,10 @@ def _provider_params(self, key, listing):
_, Provider = get_em_provider(gid, listing)
authn_fields = {}
if Provider.auth_strategy and Provider.auth_strategy.type == "env":
keyword_param = Provider.auth_strategy.keyword_param or Provider.auth_strategy.name.lower()
keyword_param = (
Provider.auth_strategy.keyword_param
or Provider.auth_strategy.name.lower()
)
key_name = Provider.auth_strategy.name
authn_fields[keyword_param] = config.api_keys[key_name]

Expand Down

0 comments on commit 48c4908

Please sign in to comment.