Smart food suggestions based on your taste profile and ordering habits. Use when the user asks "what should I eat?", "suggest something", "I'm hungry but don't know what", or wants personalized recommendations.
Help the user decide what to eat based on their personal taste profile and ordering habits.
Call get_recommendations with any context the user provided (e.g., "lunch", "something cheap", $ARGUMENTS).
Present recommendations grouped by type:
Your Usual (type="usual"):
quick_reorder if order exists, or add_to_cart for each itemRight Now (type="time_based"):
get_restaurant_menuTry Something New (type="new_store"):
search_restaurants or get_restaurant_menuFor each recommendation, offer a clear next action the user can take.
If the user wants deeper insight into their habits, call get_taste_profile and present:
Additional context available:
explore_verticals() — show all available store types if they want to try something differentget_credits_balance() — mention credits balance if relevant to budgetget_rappi_favorites() — their favorited stores from the Rappi appbrowse_stores(store_type) — browse specific store types (Turbo, markets, pharmacies)If the user picks a recommendation, transition into the ordering flow:
quick_reorder for "usual" recommendationsget_restaurant_menu + add_to_cart for specific storessearch_store_products(store_id, query) + add_to_cart(... product_name, product_price)Prices in COP, formatted as $35.500.