GattoNero commited on
Commit
2718d04
·
verified ·
1 Parent(s): abc97b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -2
app.py CHANGED
@@ -544,11 +544,17 @@ blackList = [
544
  "question":"In the video https://www.youtube.com/watch?v=L1vXCYZAYYM, what is the highest number of bird species to be on camera simultaneously?"
545
  ,"Level":"1",
546
  "file_name":""
 
 
 
 
 
 
547
  }
548
  ]
549
 
550
 
551
- DOMANDE_MOCKATE = True
552
  def create_mock_questions():
553
 
554
  '''
@@ -783,7 +789,10 @@ def final_answer_tool(answer: str) -> str:
783
  return answer
784
 
785
  def print_coso(scritta: str):
786
- print(f"coso {scritta}")
 
 
 
787
 
788
 
789
 
 
544
  "question":"In the video https://www.youtube.com/watch?v=L1vXCYZAYYM, what is the highest number of bird species to be on camera simultaneously?"
545
  ,"Level":"1",
546
  "file_name":""
547
+ },
548
+ {
549
+ 'task_id': '9d191bce-651d-4746-be2d-7ef8ecadb9c2',
550
+ '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?"',
551
+ 'Level': '1',
552
+ 'file_name': ''
553
  }
554
  ]
555
 
556
 
557
+ DOMANDE_MOCKATE = False
558
  def create_mock_questions():
559
 
560
  '''
 
789
  return answer
790
 
791
  def print_coso(scritta: str):
792
+ if scritta is None:
793
+ print (f"porcoddio s'è rrotto: {scritta}")
794
+ else
795
+ print(f"coso {scritta}")
796
 
797
 
798