We're excited to announce two powerful new enhancements in Azure AI Search: Multi-Vector Field Support and Scoring Profiles Integration with Semantic Ranking. Developed based on your feedback, these features unlock more control and enable additional scenarios in your search experiences
Why these Enhancements Matter
As search experiences become increasingly sophisticated, handling complex, multimodal data and maintaining precise relevance is crucial. These new capabilities directly address common pain points:
- Multi-Vector Field Support helps you manage detailed, multimodal, and segmented content more effectively.
- Scoring Profiles Integration with Semantic Ranking ensures consistent relevance throughout your search pipeline.
Multi-Vector Field Support
Previously, vector fields `(Collection(Edm.Single))` or other narrow types could only exist at the top level of your index. Now, Azure AI Search enables you to embed multiple vectors within nested fields, providing richer context and deeper semantic understanding
This is particularly valuable for:
- Segmenting long-form documents into manageable and searchable chunks.
- Handling multimodal datasets, including combined textual and visual data.
- Enhancing semantic accuracy for complex data scenarios.
Key Capabilities
- Index multiple vectors within nested complex fields.
- Query nested vectors directly.
- Intelligent ranking selects the most relevant vector per document.
Example Index Definition
{
"name": "multivector-index",
"fields": [
{ "name": "id", "type": "Edm.String", "key": true, "searchable": true },
{ "name": "title", "type": "Edm.String", "searchable": true },
{ "name": "descriptionEmbedding", "type": "Collection(Edm.Single)", "dimensions": 3, "searchable": true, "vectorSearchProfile": "hnsw" },
{ "name": "scenes", "type": "Collection(Edm.ComplexType)", "fields": [
{ "name": "embedding", "type": "Collection(Edm.Single)", "dimensions": 3, "searchable": true, "vectorSearchProfile": "hnsw" },
{ "name": "timestamp", "type": "Edm.Int32" },
{ "name": "description", "type": "Edm.String", "searchable": true }
]}
]
Querying Nested Vectors
{
"vectorQueries": [{
"kind": "text",
"text": "whales swimming",
"K": 50,
"fields": "scenes/embedding",
"perDocumentVectorLimit": 0
}],
"select": "title, scenes/timestamp, scenes/description"
}
The above snippet assumes a vectorizer has been configured in the vector search configuration.
Enhanced Semantic Ranking with Scoring Profiles
Previously, scoring profiles influenced search results only during initial ranking. With this enhancement, scoring profiles also apply after semantic reranking, ensuring that your boosts shape the final results.
Why Use Scoring Profiles?
Scoring profiles tune ranking based on business needs, enabling scenarios such as:
- Term boosting: Highlight important keywords.
- Freshness boosting: Prioritize recent documents.
- Geographic boosting: Adjust rankings based on geographic location.
Enabling Scoring Profiles
Integrate scoring profiles with semantic ranker:
{
"semantic": {
"configurations": [
{
"name": "mySemanticConfig",
"rankingOrder": "boostedReRankerScore"
}
]
}
}
Sample Semantic Query with Boosted Scores:
{
"search": "my query to be boosted",
"scoringProfile": "myScoringProfile",
"queryType": "semantic"
}
NOTE: This also composes with vector search and hybrid search as well. All query types and scenarios will carry your scoring profile through the final reranked set of results. Read about how relevance and scoring here.
Example Response:
{
"value": [
{
"@search.score": 0.63,
"@search.rerankerScore": 2.98,
"@search.rerankerBoostedScore": 7.68,
"content": "boosted content 2"
},
{
"@search.score": 1.12,
"@search.rerankerScore": 3.12,
"@search.rerankerBoostedScore": 5.61,
"content": "boosted content 1"
}
]
}
Practical Guidance:
Consider the following best practices when leveraging these new features:
- For long documents: Use nested vectors when you want diverse, unique top-level document results. Nested vectors with perDocumentVectorLimit set ensure distinct document diversity.
- For multimodal scenarios: Combine text and image embeddings within nested vectors for detailed contextual insights.
- Experiment with scoring profiles: Use term, freshness, or geographic boosts to precisely influence your semantic search ranking.
Get Started Today
Explore these new features today, combining multi-vector fields with semantic ranking enhancements:
- What’s new in Azure AI Search?
- Multi-Vector Field Support - Azure AI Search | Microsoft Learn
- Integrate Scoring Profiles with Semantic Ranking - Azure AI Search | Microsoft Learn
Also check out our other latest blogs:
- Introducing agentic retrieval in Azure AI Search: an automated query engine designed for agents
- Ways to simplify your data ingestion pipeline with Azure AI Search | Microsoft Community Hub
We welcome your feedback and questions. Drop a comment below or visit https://feedback.azure.com to share your ideas!
Published May 28, 2025
Version 1.0fsunavala-msft
Microsoft
Joined May 25, 2022
AI - Azure AI services Blog
Follow this blog board to get notified when there's new activity