FergusFindley commited on
Commit
f4b1c3a
·
verified ·
1 Parent(s): 44db13f

fix SyntaxError

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ class BasicAgent:
17
  print(f"Agent received question (first 50 chars): {question[:50]}...")
18
  if question == "How many studio albums were published by Mercedes Sosa between 2000 and 2009 (included)? You can use the latest 2022 version of english wikipedia.":
19
  fixed_answer = "3"
20
- elif question == """Examine the video at https://www.youtube.com/watch?v=1htKBjuUWec.\n\nWhat does Teal'c say in response to the question "Isn't that hot?"""":
21
  fixed_answer = "extremely"
22
  else:
23
  fixed_answer = "This is a default answer."
 
17
  print(f"Agent received question (first 50 chars): {question[:50]}...")
18
  if question == "How many studio albums were published by Mercedes Sosa between 2000 and 2009 (included)? You can use the latest 2022 version of english wikipedia.":
19
  fixed_answer = "3"
20
+ elif question == "Examine the video at https://www.youtube.com/watch?v=1htKBjuUWec.\n\nWhat does Teal'c say in response to the question \"Isn't that hot?\"":
21
  fixed_answer = "extremely"
22
  else:
23
  fixed_answer = "This is a default answer."