Spaces:
Runtime error
Runtime error
azaninello
commited on
Commit
•
82098b3
1
Parent(s):
35feef4
Update app.py
Browse files
app.py
CHANGED
@@ -30,9 +30,13 @@ def search_engine(target):
|
|
30 |
|
31 |
if len(result) == 0:
|
32 |
return f"Non ho trovato la parola '{target}' nei testi.\n"
|
|
|
|
|
|
|
|
|
33 |
|
34 |
else:
|
35 |
-
return f"""Ho trovato {len(result)} {"frasi" if len(result) > 1 else "frase"} in cui è presente la parola {target}.\n {
|
36 |
|
37 |
demo = gr.Interface(fn=search_engine, inputs='text', outputs='text')
|
38 |
demo.launch()
|
|
|
30 |
|
31 |
if len(result) == 0:
|
32 |
return f"Non ho trovato la parola '{target}' nei testi.\n"
|
33 |
+
|
34 |
+
stringed_results = ''
|
35 |
+
for r in result:
|
36 |
+
stringed_results += str(r) + '\n'
|
37 |
|
38 |
else:
|
39 |
+
return f"""Ho trovato {len(result)} {"frasi" if len(result) > 1 else "frase"} in cui è presente la parola {target}.\n {}"""
|
40 |
|
41 |
demo = gr.Interface(fn=search_engine, inputs='text', outputs='text')
|
42 |
demo.launch()
|