in backend/matching-engine/services/spacy_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.words],
min(num_items, len(self.words)),
)