From the course: Azure for Developers: Retrieval-Augmented Generation (RAG) with Azure AI

Unlock this course with a free trial

Join today to access over 24,600 courses taught by industry experts.

Creating a skillset and indexer

Creating a skillset and indexer

- [Instructor] Once you have created an index and set up a data source, the next step is to create a skillset in Azure AI search to access external processing, and an indexer to create our search index. A skill in Azure AI search is an operation that transforms our content in some way. We can view more information about this in Microsoft Learn. Skills are organized into three categories. Built-in skills require an Azure AI services, multi-service account resource, or an Azure OpenAI resource. In our example, we need the Azure AI services multi-service account to recognize location entities in our document and the Azure OpenAI to perform the vector embeddings. These processes have their own separate bill tied to the resource used. You can also create a custom skill using custom code, which you can access through a URI. We will not cover this in this course. Finally, utility skills are internal to Azure AI search, which do not require external resources. These operations are…

Contents