Update app.py
Browse files
app.py
CHANGED
@@ -245,9 +245,9 @@ def process_command(command):
|
|
245 |
command = command.lower()
|
246 |
|
247 |
# Show the menu without categorizing the items
|
248 |
-
|
249 |
menu_response = (
|
250 |
-
"
|
251 |
"Vegetable Biryani, Butter Chicken, Paneer Butter Masala, Chicken Biryani, "
|
252 |
"Lassi, Milkshake, Gulab Jamun, Ice Cream. "
|
253 |
"Please let me know what you'd like to add to your order."
|
|
|
245 |
command = command.lower()
|
246 |
|
247 |
# Show the menu without categorizing the items
|
248 |
+
if "menu" in command or "what’s the menu" in command or "Show me the menu" in command:
|
249 |
menu_response = (
|
250 |
+
"Here are the available food items: "
|
251 |
"Vegetable Biryani, Butter Chicken, Paneer Butter Masala, Chicken Biryani, "
|
252 |
"Lassi, Milkshake, Gulab Jamun, Ice Cream. "
|
253 |
"Please let me know what you'd like to add to your order."
|