Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -82,8 +82,9 @@ class BasicAgent:
|
|
82 |
q_data = {"question": question}
|
83 |
|
84 |
text = q_data.get("question", "")
|
85 |
-
file_info = q_data.get("file_name")
|
86 |
|
|
|
87 |
print(f"coso file_info: {file_info}")
|
88 |
|
89 |
# Se è presente un file, gestiscilo
|
|
|
82 |
q_data = {"question": question}
|
83 |
|
84 |
text = q_data.get("question", "")
|
85 |
+
file_info = q_data.get("file_name", "")
|
86 |
|
87 |
+
print(f"coso text: {text}")
|
88 |
print(f"coso file_info: {file_info}")
|
89 |
|
90 |
# Se è presente un file, gestiscilo
|