Smart matching system using AI A product manager developing a business matching system using similarity search is advised to adopt retrieval-augmented generation (RAG) and combine embeddings with structured metadata such as industry, location, and service categories to improve matching quality. The recommendation comes from a Hugging Face blog commenter who notes that mapping service descriptions into standardized categories before semantic matching can enhance accuracy, especially when businesses describe the same service differently. Hey folks I’m a product manager who works on a project that helps businesses find opportunities based on company profiles and specific fields like name, description, and services. Additionally, companies can add information in three key areas: “I’m looking for” specific needs like finding an investor or partner , “What I can give” what they can offer in return, like networking or services , “Open to” exploratory possibilities like M&A . Currently, I’m using a similarity search to match businesses with each other based on these fields. For example, if a user asks, “show companies I can sell my products to,” the system tries to find matches based on context. However, I’m not sure if similarity search is the best approach for this task. I’m looking for insights on how others have solved similar matching problems, especially when matching business queries to other companies’ needs and offerings. Any advice on alternative methods or technologies you’ve used successfully would be appreciated Will be glad to hear any comments. Thx what you are looking for is called RAG. If you are looking for some resources or what to learn about it you can check these links below. my blogpost in here RAG chatbot using llama3 https://huggingface.co/blog/not-lain/rag-chatbot-using-llama3 and maybe this one too if you have images in your dataset Image-based search engine https://huggingface.co/blog/not-lain/image-retriever some cool resources can also be found in here Open-Source AI Cookbook - Hugging Face Open-Source AI Cookbook https://huggingface.co/learn/cookbook/index and here Hugging Face – Blog https://huggingface.co/blog Similarity search is a good starting point, but I’d also consider combining embeddings with structured metadata industry, location, and service categories . That usually improves matching quality, especially when businesses describe the same service differently. For example, a business may list Junk Removal Services while another uses terms like hauling, cleanouts, or debris removal. Mapping those variations into standardized service categories before semantic matching can improve accuracy. The same applies to more specific services such as Commercial Junk Removal , where intent and customer type matter in the matching process.