Hello @Vilhelm Heiberg there are a couple of ways to address the singular vs. plural search term issue in Azure AI Search:
- You can utilize Wildcard Searches. Azure AI Search supports wildcard searches using the asterisk () symbol. For your example, you can search for "squat" which would return results containing both "squat" and "squats". However, wildcard searches can be less precise and could potentially return unexpected results. Use them cautiously.
- Another option is to customize the Lexical Analyzer. The "en.microsoft" and "nb.microsoft" analyzers are designed for general-purpose use. If you have specific requirements for handling singular and plural forms, you can create a custom lexical analyzer using Apache Lucene analyzers.