Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -116,9 +116,9 @@ with gr.Blocks(css=css) as demo:
|
|
116 |
with gr.Column(elem_id="col_container"):
|
117 |
openai_api_key = gr.Textbox(type='password', label="Insira sua chave de API OpenAI aqui")
|
118 |
chatbot = gr.Chatbot(elem_id="chatbot")
|
119 |
-
inputs = gr.
|
120 |
state = gr.State([])
|
121 |
-
b1 = gr.Button("
|
122 |
|
123 |
#inputs, top_p, temperature, top_k, repetition_penalty
|
124 |
with gr.Accordion("Parameters", open=False):
|
|
|
116 |
with gr.Column(elem_id="col_container"):
|
117 |
openai_api_key = gr.Textbox(type='password', label="Insira sua chave de API OpenAI aqui")
|
118 |
chatbot = gr.Chatbot(elem_id="chatbot")
|
119 |
+
inputs = gr.TextBox(placeholder="Olá!", label="Digite uma entrada e pressione Enter")
|
120 |
state = gr.State([])
|
121 |
+
b1 = gr.Button("Executar")
|
122 |
|
123 |
#inputs, top_p, temperature, top_k, repetition_penalty
|
124 |
with gr.Accordion("Parameters", open=False):
|