Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -120,23 +120,22 @@ with gr.Blocks(css=css) as demo:
|
|
120 |
gr.HTML(title)
|
121 |
with gr.Column(elem_id="col_container"):
|
122 |
openai_api_key = gr.Textbox(type='password', label="Insira sua chave de API OpenAI aqui")
|
123 |
-
chatbot = gr.Chatbot(elem_id="chatbot")
|
124 |
inputs = gr.Textbox(placeholder="Olá!", label="Digite uma entrada e pressione Enter", lines=3)
|
125 |
state = gr.State([])
|
126 |
b1 = gr.Button(value="Executar", variant="primary")
|
127 |
-
|
128 |
-
#
|
129 |
with gr.Accordion("Parameters", open=False):
|
130 |
-
top_p = gr.Slider(
|
131 |
-
temperature = gr.Slider(
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
#gr.Markdown(description)
|
142 |
demo.queue().launch(debug=True)
|
|
|
120 |
gr.HTML(title)
|
121 |
with gr.Column(elem_id="col_container"):
|
122 |
openai_api_key = gr.Textbox(type='password', label="Insira sua chave de API OpenAI aqui")
|
123 |
+
chatbot = gr.Chatbot(elem_id="chatbot")
|
124 |
inputs = gr.Textbox(placeholder="Olá!", label="Digite uma entrada e pressione Enter", lines=3)
|
125 |
state = gr.State([])
|
126 |
b1 = gr.Button(value="Executar", variant="primary")
|
127 |
+
|
128 |
+
# Parâmetros
|
129 |
with gr.Accordion("Parameters", open=False):
|
130 |
+
top_p = gr.Slider(minimum=0, maximum=1.0, value=1.0, step=0.05, label="Top-p")
|
131 |
+
temperature = gr.Slider(minimum=0, maximum=5.0, value=1.0, step=0.1, label="Temperature")
|
132 |
+
chat_counter = gr.Number(value=0, visible=False)
|
133 |
+
|
134 |
+
# Associando a função 'predict' ao campo de entrada 'inputs' e ao botão 'b1'
|
135 |
+
inputs.submit(predict, inputs=[inputs, top_p, temperature, openai_api_key, chat_counter, chatbot, state], outputs=[chatbot, state, chat_counter])
|
136 |
+
b1.click(predict, inputs=[inputs, top_p, temperature, openai_api_key, chat_counter, chatbot, state], outputs=[chatbot, state, chat_counter])
|
137 |
+
|
138 |
+
# Botão para limpar o campo de texto
|
139 |
+
b1.click(reset_textbox, inputs=[], outputs=[inputs])
|
140 |
+
|
|
|
141 |
demo.queue().launch(debug=True)
|