[AIS] Virtual Agent (AIS Fallback Topic) / AI Seach - Search results can show duplicated items for Catalog Items when the same translated text for the Catalog Item name is in both [sys_translated] and [sys_translated_text] tables.Issue When a search is performed in English, everything works correctly as expected. However, when the search is conducted in other languages, such as Spanish, the titles of the requests appear duplicated in the Virtual Agent's response. The same issue occurs when using the AIS Preview Tool and the translated catalog item name is duplicated in the Search Results. CauseThe AIS ingestion translation logic looks at both [sys_translated] and [sys_translated_text] tables for translations, and the values are concatenated with space as a delimiter. Therefore, the duplicate names are caused by translations for the catalog items in table [sys_translated] that already exist in table [sys_translated_text].Resolution1. Check for [sc_cat_item.name] records for all languages in table [sys_translated]https://<INSTANCE_NAME>.service-now.com/sys_translated_list.do?sysparm_query=name%3Dsc_cat_item%5Eelement%3Dname&sysparm_view= 2. The equivalent translations should exist on table [sys_translated_text]https://<INSTANCE_NAME>.service-now.com/sys_translated_text_list.do?sysparm_query=tablenameSTARTSWITHsc_cat_item%5EfieldnameSTARTSWITHname&sysparm_view= 3. Export to XML and delete the duplicate translation records in table [sys_translated] 4. Open Indexed Sources record for "Catalog Item Table" [sc_cat_item] 5. Click on "Index All Tables" button 6. Once indexing has completed that can be monitored via table [ais_ingest_datasource_stats], Virtual Agent and the AIS Preview tool should no longer show duplicated translations for certain Catalog Items.