You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the issue is specifically with the URL construction in the DefaultOpenAIAzureService initialization. The format of Azure OpenAI endpoints is typically https://{resourceName}.openai.azure.com, but the code is constructing it as https://{resourceName}/openai.azure.com, which leads to an invalid URL structure.