Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -7,9 +7,6 @@ from tools.final_answer import FinalAnswerTool
|
|
| 7 |
|
| 8 |
from Gradio_UI import GradioUI
|
| 9 |
|
| 10 |
-
from typing import Union, List
|
| 11 |
-
from collections import defaultdict
|
| 12 |
-
|
| 13 |
# Load Italian dictionary once
|
| 14 |
with open("280000_parole_italiane.txt", "r", encoding="utf-8") as f:
|
| 15 |
italian_dict = set(word.strip().lower() for word in f if word.strip().isalpha())
|
|
|
|
| 7 |
|
| 8 |
from Gradio_UI import GradioUI
|
| 9 |
|
|
|
|
|
|
|
|
|
|
| 10 |
# Load Italian dictionary once
|
| 11 |
with open("280000_parole_italiane.txt", "r", encoding="utf-8") as f:
|
| 12 |
italian_dict = set(word.strip().lower() for word in f if word.strip().isalpha())
|