in backend/matching-engine/services/text_to_image_match_service.py [0:0]
def get_suggestions(self, num_items: int = 60) -> List[Item]:
"""Get suggestions for search queries."""
return random.sample(
[Item(id=word, text=word, image=None) for word in self.prompts],
min(num_items, len(self.prompts)),
)