Spaces:
Running
Running
itacaiunas
commited on
Commit
•
e43ad01
1
Parent(s):
8e188f2
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
|
|
2 |
import openai
|
3 |
|
4 |
# Configure sua chave de API do OpenAI
|
5 |
-
openai.api_key = "
|
6 |
|
7 |
def gerar_cdu(palavras_chave):
|
8 |
prompt = f"analise as palavras-chave: {palavras_chave} e retorne com o número de Classificação Decimal Universal (CDU) mais relacionado com as palavras-chave."
|
@@ -19,16 +19,16 @@ def gerar_cdu(palavras_chave):
|
|
19 |
|
20 |
# Interface Gradio
|
21 |
input_text = gr.inputs.Textbox(label="Inserir palavras-chave separadas por vírgulas")
|
22 |
-
|
23 |
output_text = gr.outputs.Textbox(label="Resultado")
|
24 |
|
25 |
-
def generate_cdu(
|
26 |
-
if
|
27 |
-
return gerar_cdu(
|
28 |
else:
|
29 |
return ""
|
30 |
|
31 |
title = "Gerador de CDU"
|
32 |
description = "Insira palavras-chave separadas por vírgulas e clique em 'Gerar CDU' para obter a classificação relacionada."
|
33 |
|
34 |
-
gr.Interface(fn=generate_cdu, inputs=input_text, outputs=output_text, title=title, description=description,
|
|
|
2 |
import openai
|
3 |
|
4 |
# Configure sua chave de API do OpenAI
|
5 |
+
openai.api_key = "ssk-gBqEtrxdoptJnst5BpW2T3BlbkFJej1FLHcITub1EylmooQH"
|
6 |
|
7 |
def gerar_cdu(palavras_chave):
|
8 |
prompt = f"analise as palavras-chave: {palavras_chave} e retorne com o número de Classificação Decimal Universal (CDU) mais relacionado com as palavras-chave."
|
|
|
19 |
|
20 |
# Interface Gradio
|
21 |
input_text = gr.inputs.Textbox(label="Inserir palavras-chave separadas por vírgulas")
|
22 |
+
button_label = "Gerar CDU"
|
23 |
output_text = gr.outputs.Textbox(label="Resultado")
|
24 |
|
25 |
+
def generate_cdu(palavras_chave):
|
26 |
+
if palavras_chave:
|
27 |
+
return gerar_cdu(palavras_chave)
|
28 |
else:
|
29 |
return ""
|
30 |
|
31 |
title = "Gerador de CDU"
|
32 |
description = "Insira palavras-chave separadas por vírgulas e clique em 'Gerar CDU' para obter a classificação relacionada."
|
33 |
|
34 |
+
gr.Interface(fn=generate_cdu, inputs=input_text, outputs=output_text, title=title, description=description, button_text=button_label).launch()
|