Files
Eduard van Valkenburg a2856d3b92 Python: restructure: Python samples into progressive 01-05 layout (#3862)
* restructure: Python samples into progressive 01-05 layout

- 01-get-started/: 6 numbered steps (hello agent → hosting)
- 02-agents/: all agent concept samples (tools, middleware, providers, etc.)
- 03-workflows/: ALL existing workflow samples preserved as-is
- 04-hosting/: azure-functions, durabletask, a2a
- 05-end-to-end/: demos, evaluation, hosted agents
- Old files moved to _to_delete/ for review
- Added AGENTS.md with structure documentation
- autogen-migration/ and semantic-kernel-migration/ preserved at root

* fix: switch to AzureOpenAI Foundry, fix CI failures

- Switch all 01-get-started samples to AzureOpenAIResponsesClient with
  Azure AI Foundry project endpoint (AZURE_AI_PROJECT_ENDPOINT +
  AZURE_OPENAI_RESPONSES_DEPLOYMENT_NAME + AzureCliCredential)
- Add _to_delete/ and 05-end-to-end/ to pyrightconfig.samples.json excludes
- Fix test paths in packages/ that referenced old getting_started/ dirs:
  durabletask conftest + streaming test, azurefunctions conftest,
  devui conftest + capture_messages + openai_sdk_integration
- Fix workflow_as_agent_human_in_the_loop.py import (sibling import)
- Update hosting READMEs and tool comment paths
- Replace root README.md with new structure overview
- Update AGENTS.md to document Azure OpenAI Foundry as default provider

* cleanup: remove _to_delete folder, copy resource files to active dirs

All files in _to_delete/ were either:
- Exact duplicates of files in the new structure (240 files)
- Same file with only comment path updates (100 files)
- One import-fix diff (workflow_as_agent_human_in_the_loop.py)
- One superseded minimal_sample.py

Resource files (sample.pdf, countries.json, employees.pdf, weather.json)
copied to 02-agents/sample_assets/ and 02-agents/resources/ since active
samples reference them.

* fix: address PR review comments, centralize resources, remove root duplicates

- Fix type annotation in 04_memory.py (string union -> proper types)
- Fix old sample paths in observability files
- Fix grammar/spelling in observability samples
- Move sample_assets/ and resources/ to shared/ folder
- Remove 8 duplicate observability files from 02-agents root
- Update resource path references in multimodal_input and provider samples

* fix: update broken links from old getting_started paths to new structure

- Update relative paths in READMEs: getting_started/ → 01-get-started/,
  02-agents/, 03-workflows/, 04-hosting/, 05-end-to-end/
- Fix absolute GitHub URLs in package READMEs
- Fix broken link in ollama package README

* fix: convert absolute GitHub URLs to relative paths for link checker

Absolute URLs to python/samples/ on main branch 404 until PR merges.
Converted to relative paths that linkspector can verify locally.

* fix: update link for handoff sample moved to orchestrations/

* fix: update chatkit-integration README path from demos/ to 05-end-to-end/

* fix: update broken links in orchestrations README to match flat directory structure
a2856d3b92 · 2026-02-12 17:36:36 +00:00
History
..

Azure AI Search Context Provider Examples

Azure AI Search context provider enables Retrieval Augmented Generation (RAG) with your agents by retrieving relevant documents from Azure AI Search indexes. It supports two search modes optimized for different use cases.

This folder contains examples demonstrating how to use the Azure AI Search context provider with the Agent Framework.

Examples

File Description
azure_ai_with_search_context_agentic.py Agentic mode (recommended for most scenarios): Uses Knowledge Bases in Azure AI Search for query planning and multi-hop reasoning. Provides more accurate results through intelligent retrieval with automatic query reformulation. Slightly slower with more token consumption for query planning. Learn more
azure_ai_with_search_context_semantic.py Semantic mode (fast queries): Fast hybrid search combining vector and keyword search with semantic ranking. Returns raw search results as context. Best for scenarios where speed is critical and simple retrieval is sufficient.

Installation

pip install agent-framework-azure-ai-search agent-framework-azure-ai

Prerequisites

Required Resources

  1. Azure AI Search service with a search index containing your documents

  2. Azure AI Foundry project with a model deployment

  3. For Agentic mode only: Azure OpenAI resource for Knowledge Base model calls

Authentication

Both examples support two authentication methods:

  • API Key: Set AZURE_SEARCH_API_KEY environment variable
  • Entra ID (Managed Identity): Uses DefaultAzureCredential when API key is not provided

Run az login if using Entra ID authentication.

Configuration

Environment Variables

Common (both modes):

  • AZURE_SEARCH_ENDPOINT: Your Azure AI Search endpoint (e.g., https://myservice.search.windows.net)
  • AZURE_SEARCH_INDEX_NAME: Name of your search index
  • AZURE_AI_PROJECT_ENDPOINT: Your Azure AI Foundry project endpoint
  • AZURE_AI_MODEL_DEPLOYMENT_NAME: Model deployment name (e.g., gpt-4o, defaults to gpt-4o)
  • AZURE_SEARCH_API_KEY: (Optional) Your search API key - if not provided, uses DefaultAzureCredential

Agentic mode only:

  • AZURE_SEARCH_KNOWLEDGE_BASE_NAME: Name of your Knowledge Base in Azure AI Search
  • AZURE_OPENAI_RESOURCE_URL: Your Azure OpenAI resource URL (e.g., https://myresource.openai.azure.com)
    • Important: This is different from AZURE_AI_PROJECT_ENDPOINT - Knowledge Base needs the OpenAI endpoint for model calls

Example .env file

For Semantic Mode:

AZURE_SEARCH_ENDPOINT=https://myservice.search.windows.net
AZURE_SEARCH_INDEX_NAME=my-index
AZURE_AI_PROJECT_ENDPOINT=https://<resource-name>.services.ai.azure.com/api/projects/<project-name>
AZURE_AI_MODEL_DEPLOYMENT_NAME=gpt-4o
# Optional - omit to use Entra ID
AZURE_SEARCH_API_KEY=your-search-key

For Agentic Mode (add these to semantic mode variables):

AZURE_SEARCH_KNOWLEDGE_BASE_NAME=my-knowledge-base
AZURE_OPENAI_RESOURCE_URL=https://myresource.openai.azure.com

Search Modes Comparison

Feature Semantic Mode Agentic Mode
Speed Fast Slower (query planning overhead)
Token Usage Lower Higher (query reformulation)
Retrieval Strategy Hybrid search + semantic ranking Multi-hop reasoning with Knowledge Base
Query Handling Direct search Automatic query reformulation
Best For Simple queries, speed-critical apps Complex queries, multi-document reasoning
Additional Setup None Requires Knowledge Base + OpenAI resource

When to Use Semantic Mode

  • Simple queries where direct keyword/vector search is sufficient
  • Speed is critical and you need low latency
  • Straightforward retrieval from single documents
  • Lower token costs are important

When to Use Agentic Mode

  • Complex queries requiring multi-hop reasoning
  • Cross-document analysis where information spans multiple sources
  • Ambiguous queries that benefit from automatic reformulation
  • Higher accuracy is more important than speed
  • You need intelligent query planning and document synthesis

How the Examples Work

Semantic Mode Flow

  1. User query is sent to Azure AI Search
  2. Hybrid search (vector + keyword) retrieves relevant documents
  3. Semantic ranking reorders results for relevance
  4. Top-k documents are returned as context
  5. Agent generates response using retrieved context

Agentic Mode Flow

  1. User query is sent to the Knowledge Base
  2. Knowledge Base plans the retrieval strategy
  3. Multiple search queries may be executed (multi-hop)
  4. Retrieved information is synthesized
  5. Enhanced context is provided to the agent
  6. Agent generates response with comprehensive context

Code Example

Semantic Mode

from agent_framework import Agent
from agent_framework.azure import AzureAIAgentClient, AzureAISearchContextProvider
from azure.identity.aio import DefaultAzureCredential

# Create search provider with semantic mode (default)
search_provider = AzureAISearchContextProvider(
    endpoint=search_endpoint,
    index_name=index_name,
    api_key=search_key,  # Or use credential for Entra ID
    mode="semantic",  # Default mode
    top_k=3,  # Number of documents to retrieve
)

# Create agent with search context
async with AzureAIAgentClient(credential=DefaultAzureCredential()) as client:
    async with Agent(
        client=client,
        model=model_deployment,
        context_provider=search_provider,
    ) as agent:
        response = await agent.run("What information is in the knowledge base?")

Agentic Mode

from agent_framework.azure import AzureAISearchContextProvider

# Create search provider with agentic mode
search_provider = AzureAISearchContextProvider(
    endpoint=search_endpoint,
    index_name=index_name,
    api_key=search_key,
    mode="agentic",  # Enable agentic retrieval
    knowledge_base_name=knowledge_base_name,
    azure_openai_resource_url=azure_openai_resource_url,
    top_k=5,
)

# Use with agent (same as semantic mode)
async with Agent(
    client=client,
    model=model_deployment,
    context_provider=search_provider,
) as agent:
    response = await agent.run("Analyze and compare topics across documents")

Running the Examples

  1. Set up environment variables (see Configuration section above)

  2. Ensure you have an Azure AI Search index with documents:

    # Verify your index exists
    curl -X GET "https://myservice.search.windows.net/indexes/my-index?api-version=2024-07-01" \
         -H "api-key: YOUR_API_KEY"
    
  3. For agentic mode: Create a Knowledge Base in Azure AI Search

  4. Run the examples:

    # Semantic mode (fast, simple)
    python azure_ai_with_search_context_semantic.py
    
    # Agentic mode (intelligent, complex)
    python azure_ai_with_search_context_agentic.py
    

Key Parameters

Common Parameters

  • endpoint: Azure AI Search service endpoint
  • index_name: Name of the search index
  • api_key: API key for authentication (optional, can use credential instead)
  • credential: Azure credential for Entra ID auth (e.g., DefaultAzureCredential())
  • mode: Search mode - "semantic" (default) or "agentic"
  • top_k: Number of documents to retrieve (default: 3 for semantic, 5 for agentic)

Semantic Mode Parameters

  • semantic_configuration: Name of semantic configuration in your index (optional)
  • query_type: Query type - "semantic" for semantic search (default)

Agentic Mode Parameters

  • knowledge_base_name: Name of your Knowledge Base (required)
  • azure_openai_resource_url: Azure OpenAI resource URL (required)
  • max_search_queries: Maximum number of search queries to generate (default: 3)

Troubleshooting

Common Issues

  1. Authentication errors

    • Ensure AZURE_SEARCH_API_KEY is set, or run az login for Entra ID auth
    • Verify your credentials have search permissions
  2. Index not found

    • Verify AZURE_SEARCH_INDEX_NAME matches your index name exactly
    • Check that the index exists and contains documents
  3. Agentic mode errors

    • Ensure AZURE_SEARCH_KNOWLEDGE_BASE_NAME is correctly configured
    • Verify AZURE_OPENAI_RESOURCE_URL points to your Azure OpenAI resource (not AI Foundry endpoint)
    • Check that your OpenAI resource has the necessary model deployments
  4. No results returned

    • Verify your index has documents with vector embeddings (for semantic/hybrid search)
    • Check that your queries match the content in your index
    • Try increasing top_k parameter
  5. Slow responses in agentic mode

    • This is expected - agentic mode trades speed for accuracy
    • Reduce max_search_queries if needed
    • Consider semantic mode for speed-critical applications

Performance Tips

  • Use semantic mode as the default for most scenarios - it's fast and effective
  • Switch to agentic mode when you need multi-hop reasoning or complex queries
  • Adjust top_k based on your needs - higher values provide more context but increase token usage
  • Enable semantic configuration in your index for better semantic ranking
  • Use Entra ID authentication in production for better security

Additional Resources