skip to Main Content

Encountered keyerror when run LangChain program with Azure API

I encountered error when I run below codes (extracted from https://python.langchain.com/docs/tutorials/llm_chain/#using-language-models) in Jupyter Notebook: import getpass import os os.environ["AZURE_OPENAI_API_KEY"] = "d957dadfasdfafdsfsafasfasfsafasf99f4b7" from langchain_openai import AzureChatOpenAI model = AzureChatOpenAI( azure_endpoint=os.environ["https://testing123.cognitiveservices.azure.com/"], azure_deployment=os.environ["testing123"], openai_api_version=os.environ["2021-04-30"], ) Error I got after run: KeyError Traceback (most…

VIEW QUESTION

Azure Communication Services: Our services aren't available right now We're working to restore all services as soon as possible Please check back soon

I am trying to use Azure Communication Services to create a user identity and then fetch relay configuration for network traversal. Here is the code: const { CommunicationIdentityClient } = require("@azure/communication-identity"); const { CommunicationRelayClient } = require("@azure/communication-network-traversal");; const main =…

VIEW QUESTION
Back To Top
Search