LlamaIndex defaults to OpenAI embedding and llm model. If you want to use diff ones you'll have to pass them in the methods or define them globally using Settings.
from llama_index.core import Settings
Settings.llm= YOur Azure llm
Settings.embed_model = Your embed_model instance here
This will now use your llm and embedding model everywhere