GattoNero commited on
Commit
c2f8e16
·
verified ·
1 Parent(s): e883e09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -9
app.py CHANGED
@@ -92,7 +92,7 @@ class BasicAgent:
92
  )
93
 
94
  # Prepara l'agente
95
- self.agent = OpenAIAgent.from_tools([ingredient_tool, search_tool, log_thought_tool, sum_list_tool, final_answer], llm=llm, verbose=True)
96
 
97
  # Client OpenAI per chiamate esterne (immagini/audio)
98
 
@@ -131,7 +131,7 @@ class BasicAgent:
131
  print_coso(f"__call__ text: {text}")
132
  print_coso(f"__call__ file_info: {file_info}")
133
 
134
- text = f"{verification_of_final_answer} {yaml_template2} {text}"
135
 
136
  # Se è presente un file, gestiscilo
137
 
@@ -477,7 +477,7 @@ def create_mock_questions():
477
  'Level': '1',
478
  'file_name': ''
479
  },
480
- {'task_id': '99c9cc74-fdc8-46c6-8f8d-3ce2d3bfeea3',
481
  'question': 'Hi, I\'m making a pie but I could use some help with my shopping list. I have everything I need for the crust, but I\'m not sure about the filling. I got the recipe from my friend Aditi, but she left it as a voice memo and the speaker on my phone is buzzing so I can\'t quite make out what she\'s saying. Could you please listen to the recipe and list all of the ingredients that my friend described? I only want the ingredients for the filling, as I have everything I need to make my favorite pie crust. I\'ve attached the recipe as Strawberry pie.mp3.\n\nIn your response, please only list the ingredients, not any measurements. So if the recipe calls for "a pinch of salt" or "two cups of ripe strawberries" the ingredients on the list would be "salt" and "ripe strawberries".\n\nPlease format your response as a comma separated list of ingredients. Also, please alphabetize the ingredients.',
482
  'Level': '1',
483
  'file_name': '99c9cc74-fdc8-46c6-8f8d-3ce2d3bfeea3.mp3'
@@ -497,18 +497,24 @@ def create_mock_questions():
497
  "file_name":"f918266a-b3e0-4914-865d-4faa564f1aef.py"
498
  }
499
 
500
-
501
- '''
502
 
503
-
504
- return [
505
-
506
- {
507
  "task_id":"7bd855d8-463d-4ed5-93ca-5fe35145f733",
508
  "question":"The attached Excel file contains the sales of menu items for a local fast-food chain. What were the total sales that the chain made from food (not including drinks)? Express your answer in USD with two decimal places.",
509
  "Level":"1",
510
  "file_name":"7bd855d8-463d-4ed5-93ca-5fe35145f733.xlsx"
511
  }
 
 
 
 
 
 
 
 
 
 
 
512
  ]
513
 
514
 
 
92
  )
93
 
94
  # Prepara l'agente
95
+ self.agent = OpenAIAgent.from_tools([ingredient_tool, search_tool, log_thought_tool, sum_list_tool], llm=llm, verbose=True)
96
 
97
  # Client OpenAI per chiamate esterne (immagini/audio)
98
 
 
131
  print_coso(f"__call__ text: {text}")
132
  print_coso(f"__call__ file_info: {file_info}")
133
 
134
+ text = f"{verification_of_final_answer} {yaml_template} {text}"
135
 
136
  # Se è presente un file, gestiscilo
137
 
 
477
  'Level': '1',
478
  'file_name': ''
479
  },
480
+ {'task_id': '99c9cc74-fdc8-46c6-8f8d-3ce2d3bfeea3',
481
  'question': 'Hi, I\'m making a pie but I could use some help with my shopping list. I have everything I need for the crust, but I\'m not sure about the filling. I got the recipe from my friend Aditi, but she left it as a voice memo and the speaker on my phone is buzzing so I can\'t quite make out what she\'s saying. Could you please listen to the recipe and list all of the ingredients that my friend described? I only want the ingredients for the filling, as I have everything I need to make my favorite pie crust. I\'ve attached the recipe as Strawberry pie.mp3.\n\nIn your response, please only list the ingredients, not any measurements. So if the recipe calls for "a pinch of salt" or "two cups of ripe strawberries" the ingredients on the list would be "salt" and "ripe strawberries".\n\nPlease format your response as a comma separated list of ingredients. Also, please alphabetize the ingredients.',
482
  'Level': '1',
483
  'file_name': '99c9cc74-fdc8-46c6-8f8d-3ce2d3bfeea3.mp3'
 
497
  "file_name":"f918266a-b3e0-4914-865d-4faa564f1aef.py"
498
  }
499
 
 
 
500
 
501
+ {
 
 
 
502
  "task_id":"7bd855d8-463d-4ed5-93ca-5fe35145f733",
503
  "question":"The attached Excel file contains the sales of menu items for a local fast-food chain. What were the total sales that the chain made from food (not including drinks)? Express your answer in USD with two decimal places.",
504
  "Level":"1",
505
  "file_name":"7bd855d8-463d-4ed5-93ca-5fe35145f733.xlsx"
506
  }
507
+
508
+ '''
509
+
510
+
511
+ return [
512
+ {'task_id': '99c9cc74-fdc8-46c6-8f8d-3ce2d3bfeea3',
513
+ 'question': 'Hi, I\'m making a pie but I could use some help with my shopping list. I have everything I need for the crust, but I\'m not sure about the filling. I got the recipe from my friend Aditi, but she left it as a voice memo and the speaker on my phone is buzzing so I can\'t quite make out what she\'s saying. Could you please listen to the recipe and list all of the ingredients that my friend described? I only want the ingredients for the filling, as I have everything I need to make my favorite pie crust. I\'ve attached the recipe as Strawberry pie.mp3.\n\nIn your response, please only list the ingredients, not any measurements. So if the recipe calls for "a pinch of salt" or "two cups of ripe strawberries" the ingredients on the list would be "salt" and "ripe strawberries".\n\nPlease format your response as a comma separated list of ingredients. Also, please alphabetize the ingredients.',
514
+ 'Level': '1',
515
+ 'file_name': '99c9cc74-fdc8-46c6-8f8d-3ce2d3bfeea3.mp3'
516
+ }
517
+
518
  ]
519
 
520