Azure AI Search plugin in Microsoft Security Copilot (Preview)
Introduction
Indexing and querying are Azure AI Search's two main workloads. While querying allows to search the content from index, indexing loads the content into the search engine and makes it searchable. By connecting to one of the Azure AI Search indexes from within Copilot, the Microsoft Security Copilot integration for Azure enables to use the content in Copilot to produce contextualized, pertinent, and targeted responses.
Requirement
- The text field must be searchable.
- The title field must be filterable.
- The vector-field must use text-embedding-ada-002.
Integrated vectorization can be used to setup an index in the required way and following steps are required to get an index ready for integration into Copilot.
Connect Azure AI Search to Copilot
- Open Copilot, after ensuring authentication.
- Select the Copilot sources icon in the prompt bar.
- Go to Microsoft > Azure AI search and choose Set up.
- In Azure AI Search settings, enter the following information in the corresponding field-
- Azure AI Search instance- the name of search instance.
- Index- the name of the index within the instance to search.
- Vector- the name of the field label in the index containing the vector of embeddings.
- Text- the name of the field label in the index containing the text to search.
- Title- the title of each document to display as a source.
- Value- the API key for authentication.
The information needed for the plugin setup is available on Azure AI Search page in the Azure portal.
Although it is well-suited for knowledge-based scenarios, this plugin is not limited to them. Apps like Copilot are able to search through and retrieve information from vast amounts of data and content thanks to Azure AI Search's indexing and vectorizing capabilities.
Limitations
- Only one index at a time can be connected using the plugin. To query a different index, update the plugin settings.
- The plugin supports hybrid search (keyword and vector search), so it can only support queries on indexes that were configured according to the required settings in Requirements.
- To invoke the plugin, explicitly mention "Azure AI Search" in the prompt.
- Copilot displays the titles of the referenced documents from the index, but they aren't hyperlinked.
Comments
Post a Comment