Update app.py
Browse files
app.py
CHANGED
@@ -246,17 +246,21 @@ def process_command(command):
|
|
246 |
|
247 |
command = command.lower()
|
248 |
|
249 |
-
# Show the menu
|
250 |
if "show me the menu" in command or "what’s the menu" in command:
|
251 |
-
|
252 |
-
"Here are the options: \n"
|
253 |
-
"
|
254 |
-
"
|
255 |
-
"
|
256 |
-
"
|
257 |
-
"
|
|
|
|
|
|
|
258 |
"Please let me know what you'd like to add to your order."
|
259 |
)
|
|
|
260 |
|
261 |
# Add item to order
|
262 |
elif "add" in command:
|
|
|
246 |
|
247 |
command = command.lower()
|
248 |
|
249 |
+
# Show the menu without categorizing the items
|
250 |
if "show me the menu" in command or "what’s the menu" in command:
|
251 |
+
menu_response = (
|
252 |
+
"Here are the available options: \n"
|
253 |
+
"Vegetable Biryani\n"
|
254 |
+
"Butter Chicken\n"
|
255 |
+
"Paneer Butter Masala\n"
|
256 |
+
"Chicken Biryani\n"
|
257 |
+
"Lassi\n"
|
258 |
+
"Milkshake\n"
|
259 |
+
"Gulab Jamun\n"
|
260 |
+
"Ice Cream\n"
|
261 |
"Please let me know what you'd like to add to your order."
|
262 |
)
|
263 |
+
return menu_response
|
264 |
|
265 |
# Add item to order
|
266 |
elif "add" in command:
|