jacobolopez commited on
Commit
e6a6b55
·
verified ·
1 Parent(s): 3cb759f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -40,11 +40,11 @@ def get_restaurant_suggestion(food_type:str)-> str:
40
  food_type: A string representing a valid food type e.g. italian
41
  """
42
  if food_type == "asian":
43
- return "The great wall"
44
  elif food_type == "italian":
45
- return "It's a me, Mario!"
46
  else:
47
- return "Spanish flavour"
48
 
49
 
50
  final_answer = FinalAnswerTool()
 
40
  food_type: A string representing a valid food type e.g. italian
41
  """
42
  if food_type == "asian":
43
+ return "Great Wall"
44
  elif food_type == "italian":
45
+ return "Mario y Luigi"
46
  else:
47
+ return "Default restaurant"
48
 
49
 
50
  final_answer = FinalAnswerTool()