Jérôme TERRIER
Jérôme TERRIER
> @Pixxelfragger, I'm interested to. I need to make my dev machine webserver reachable but my provider only gives me a non reachable private ip. I set up a vps...
To avoid this issue, you have to set the name of the model. ``` model = "gpt-4o" AzureChatOpenAI( azure_endpoint=os.environ["AZURE_OPENAI_ENDPOINT"], api_key=os.environ.get("AZURE_OPENAI_KEY"), azure_deployment=model, api_version=os.environ["AZURE_OPENAI_API_VERSION"], max_retries=max_retries, model=model, ) ``` Without `model=model`, it doesn't...