in backend/unified-cloud-search/services/unified_cloud_search_service.py [0:0]
def get_suggestions(self, num_items: int = 60) -> List[Item]:
"""Get all existing ids and items."""
return random.sample(
[Item(id=word, text=word, image=None) for word in self.words],
min(num_items, len(self.words)),
)