Spaces:
Sleeping
Sleeping
itacaiunas
commited on
Commit
•
b883778
1
Parent(s):
0ec43db
Update app.py
Browse files
app.py
CHANGED
@@ -29,19 +29,16 @@ def gerar_cdu(palavras_chave):
|
|
29 |
# Interface Gradio
|
30 |
input_text = gr.inputs.Textbox(label="Inserir palavras-chave separadas por vírgulas")
|
31 |
button_label = "Gerar CDU"
|
32 |
-
output_text = gr.outputs.Textbox(label="
|
33 |
|
34 |
def generate_cdu(palavras_chave):
|
35 |
if palavras_chave:
|
36 |
resultados = gerar_cdu(palavras_chave)
|
37 |
-
|
38 |
-
for palavra_chave, cdu_encontrada in resultados.items():
|
39 |
-
formatted_resultados[palavra_chave] = "\n".join(["CDU: " + cdu for cdu in cdu_encontrada])
|
40 |
-
return formatted_resultados
|
41 |
else:
|
42 |
return {}
|
43 |
|
44 |
title = "Gerador de CDU"
|
45 |
-
description = "Insira
|
46 |
|
47 |
gr.Interface(fn=generate_cdu, inputs=input_text, outputs=output_text, title=title, description=description).launch()
|
|
|
29 |
# Interface Gradio
|
30 |
input_text = gr.inputs.Textbox(label="Inserir palavras-chave separadas por vírgulas")
|
31 |
button_label = "Gerar CDU"
|
32 |
+
output_text = gr.outputs.Textbox(label="ResultadoS CDU")
|
33 |
|
34 |
def generate_cdu(palavras_chave):
|
35 |
if palavras_chave:
|
36 |
resultados = gerar_cdu(palavras_chave)
|
37 |
+
return resultados
|
|
|
|
|
|
|
38 |
else:
|
39 |
return {}
|
40 |
|
41 |
title = "Gerador de CDU"
|
42 |
+
description = "Bem vindo ao Gerador de Classificação Decimal Universal (CDU).<br/>Insira o assunto da obra, por exemplo, Geografia cultural e clique em 'ENVIAR' para obter a classificação CDU relacionada."
|
43 |
|
44 |
gr.Interface(fn=generate_cdu, inputs=input_text, outputs=output_text, title=title, description=description).launch()
|