An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
Hello Santimoy Rana,
Thank you for reaching out on Microsoft Q&A.
1. Standalone Images Not Getting Vectorized Azure AI Search does not embed raw .jpg or .png files directly. To vectorize them, you need to add an Image Analysis skill (to extract captions or text) and then pass that output into a Text Embedding skill. Finally, map the embeddings to a vector field in your index. Reference: Image Analysis skill
2. Indexer Not Detecting New Files Incremental indexing relies on the LastModified property in Blob Storage. If new files are not picked up:
Confirm the blob has a valid LastModified update.
Ensure the indexer has a schedule enabled.
If still inconsistent, run a full reset of the indexer once, then rely on incremental updates going forward. Reference: Incremental indexing
This approach ensures that both PDFs and standalone images are processed consistently.
If the information is useful, please accept the answer and upvote it to assist other community members.