Launch a chat based recipe recommender that pulls the latest weekly menu from a public site, turns each recipe into vectors, and returns smart picks based on what users like and want to avoid. It is ideal for teams testing a product recommendation engine that improves selection and saves time.
The build path fetches the current week page with HTTP Request, then HTML and Code nodes parse the server data and collect the first set of courses. Extra HTML extraction grabs description, ingredients, utensils, and time. Set and Merge nodes assemble clean records with week and cuisine. Documents are split and embedded with Mistral AI, then stored in Qdrant. Full texts are also saved to a database for later retrieval. The chat path starts from a Chat Trigger, uses a Mistral chat model, and calls a tool that hits the Qdrant Recommend API with positive and negative signals. Grouping helps return unique recipes.
You will need a Mistral AI API key and a Qdrant collection sized 1024 with cosine distance. Point the nodes to your Qdrant endpoint, run the manual build to index the week, and open the chat URL to test. Expect faster menu curation, consistent answers, and a reusable pattern you can adapt to any catalog.