Spaces:
Sleeping
Sleeping
jh000107
commited on
Commit
·
f289244
1
Parent(s):
75049a2
minor fix
Browse files
app.py
CHANGED
@@ -310,10 +310,10 @@ with gr.Blocks() as gpt_analysis:
|
|
310 |
a report on overall sentiment flow of the conversation on the \
|
311 |
volunteer's perspective.<br /> Click on them and submit them to the model to see how it works.")
|
312 |
conversation = gr.Textbox(label="Input", lines=2)
|
313 |
-
btn = gr.Button(value="Submit")
|
314 |
api_key = gr.Textbox(label="Key", lines=1)
|
315 |
btn_key = gr.Button(value="Submit Key")
|
316 |
btn_key.click(set_key, inputs=api_key)
|
|
|
317 |
with gr.Row():
|
318 |
output_box = gr.Textbox(value="", label="Output",lines=4)
|
319 |
plot_box = gr.Plot(label="Analysis Plot")
|
|
|
310 |
a report on overall sentiment flow of the conversation on the \
|
311 |
volunteer's perspective.<br /> Click on them and submit them to the model to see how it works.")
|
312 |
conversation = gr.Textbox(label="Input", lines=2)
|
|
|
313 |
api_key = gr.Textbox(label="Key", lines=1)
|
314 |
btn_key = gr.Button(value="Submit Key")
|
315 |
btn_key.click(set_key, inputs=api_key)
|
316 |
+
btn = gr.Button(value="Submit")
|
317 |
with gr.Row():
|
318 |
output_box = gr.Textbox(value="", label="Output",lines=4)
|
319 |
plot_box = gr.Plot(label="Analysis Plot")
|