dschandra commited on
Commit
894f4a1
·
verified ·
1 Parent(s): 9397cbf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -8
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
- return (
252
- "Here are the options: \n"
253
- "Vegetarian: Vegetable Biryani\n"
254
- "Non-Veg: Butter Chicken\n"
255
- "Veg + Non-Veg: Paneer Butter Masala, Chicken Biryani\n"
256
- "Drinks: Lassi, Milkshake\n"
257
- "Desserts: Gulab Jamun, Ice Cream\n"
 
 
 
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: