Spaces:
Running
Running
itacaiunas
commited on
Commit
•
d1bbdab
1
Parent(s):
64f4682
Update app.py
Browse files
app.py
CHANGED
@@ -34,13 +34,14 @@ output_text = gr.outputs.Textbox(label="Resultados CDU")
|
|
34 |
def generate_cdu(palavras_chave):
|
35 |
if palavras_chave:
|
36 |
resultados = gerar_cdu(palavras_chave)
|
37 |
-
|
|
|
|
|
|
|
38 |
else:
|
39 |
return {}
|
40 |
|
41 |
-
|
42 |
-
|
43 |
title = "Gerador de CDU"
|
44 |
-
description = "Bem
|
45 |
|
46 |
gr.Interface(fn=generate_cdu, inputs=input_text, outputs=output_text, title=title, description=description).launch()
|
|
|
34 |
def generate_cdu(palavras_chave):
|
35 |
if palavras_chave:
|
36 |
resultados = gerar_cdu(palavras_chave)
|
37 |
+
if len(resultados) > 0:
|
38 |
+
return resultados
|
39 |
+
else:
|
40 |
+
return {"Nada encontrado. Tente outro termo"}
|
41 |
else:
|
42 |
return {}
|
43 |
|
|
|
|
|
44 |
title = "Gerador de CDU"
|
45 |
+
description = "Bem-vindo ao Gerador de Classificação Decimal Universal (CDU).<br/>Insira o assunto da obra e clique em 'ENVIAR' para obter a classificação CDU relacionada."
|
46 |
|
47 |
gr.Interface(fn=generate_cdu, inputs=input_text, outputs=output_text, title=title, description=description).launch()
|