Searching after adding an additional search term, returns no results.Issue Adding a 3rd search term, no results are returned; however using the same first 2 search terms the are results. 1) Login to instance 2) Navigate to a pre-configured Service portal and add 2 search terms (example "VM access") --Several options are returned as results.3) Add a 3rd search term: "VM access role" *Current behavior: No results are returned.* Expected behavior: We expect results (at least the same results as when searching for "VM access") after searching for "VM access role"CauseThe AI Search is using the OR operator because the AND request does not yield enough results. Now, with the OR operator, AI Search uses a minimum term match to present relevant results to the users. The minimum number of terms to match is 1/2 the entered terms rounded up. This behavior is documented here: AND-to-OR search query resubmission With that calculation in mind, in the case of 2 search terms say "VM access", AI Search will look for any documents that match 1 of the terms (1/2 of 2) and thus finds results that match either "VM" or "access". In the case of 3 terms "VM access role", AI Search will look for documents that match at least 2 of the 3 terms (1/2 of 3 and rounded up = 2). However, no records in the data set match 2 of the terms and hence the platform return no results.