Has anyone set up AzureOpenAI with LlamaIndex? I've deployed a gpt-35-turbo model and a text-embedding-ada-002 model to my Azure subscription. Also, I've initialized the AzureOpenAI & OpenAIEmbedding class with my model, apiBase, apiKey, apiType and deployment name (credentials from azure) and passed it into the service_context. Now, the chat completion goes through Azure OpenAI. However, when I look at my console logs, I see that for the embedding, the URL "api.openai.com/v1/embeddings" is called. Question: Why does it not go to Azure but the official OpenAI API?