Thank you for your patience.
Azure AI Search has undergone updates that now include integrated data chunking and vectorization directly within the indexing process using standard skillsets like Microsoft.Skills.Text.SplitSkill
and Microsoft.Skills.Text.AzureOpenAIEmbeddingSkill
. This shift may have replaced the need for custom skillsets like Microsoft.Skills.Custom.WebApiSkill
that previously handled chunking. I tried reproducing the issue by adding new data, and I was able to retrieve the information successfully, indicating that the system is functioning as intended.
If the new setup doesn't meet your specific needs, you can consider customizing the process by manually configuring chunking through a custom skillset. This approach should help you achieve similar functionality to what was available before the update.
I hope this helps! Thank you.