GattoNero commited on
Commit
480aa76
·
verified ·
1 Parent(s): e318488

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -6,7 +6,7 @@ import pandas as pd
6
  import logging
7
  from smolagents import CodeAgent, DuckDuckGoSearchTool, HfApiModel, OpenAIServerModel
8
  from pathlib import Path
9
- from prompt_settings import verification_of_final_answer
10
 
11
  from llama_index.core import (
12
  VectorStoreIndex,
@@ -88,7 +88,7 @@ class BasicAgent:
88
  print_coso(f"__call__ text: {text}")
89
  print_coso(f"__call__ file_info: {file_info}")
90
 
91
- text = f"{text} {verification_of_final_answer}"
92
 
93
  # Se è presente un file, gestiscilo
94
 
 
6
  import logging
7
  from smolagents import CodeAgent, DuckDuckGoSearchTool, HfApiModel, OpenAIServerModel
8
  from pathlib import Path
9
+ from prompt_settings import verification_of_final_answer, yaml_template
10
 
11
  from llama_index.core import (
12
  VectorStoreIndex,
 
88
  print_coso(f"__call__ text: {text}")
89
  print_coso(f"__call__ file_info: {file_info}")
90
 
91
+ text = f"{text} {verification_of_final_answer} {yaml_template}"
92
 
93
  # Se è presente un file, gestiscilo
94