Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 793 Bytes

File metadata and controls

28 lines (20 loc) · 793 Bytes

Azure AI Search Package (agent-framework-azure-ai-search)

Integration with Azure AI Search for RAG (Retrieval-Augmented Generation).

Main Classes

  • AzureAISearchContextProvider - Context provider that retrieves relevant documents from Azure AI Search
  • AzureAISearchSettings - Pydantic settings for Azure AI Search configuration

Usage

from agent_framework.azure import AzureAISearchContextProvider

provider = AzureAISearchContextProvider(
    endpoint="https://your-search.search.windows.net",
    index_name="your-index",
)
agent = Agent(..., context_provider=provider)

Import Path

from agent_framework.azure import AzureAISearchContextProvider
# or directly:
from agent_framework_azure_ai_search import AzureAISearchContextProvider