Address textbox change issue
Browse files
app.py
CHANGED
|
@@ -607,9 +607,9 @@ with gr.Blocks(css=".gradio-container {background-color: lightgray}") as block:
|
|
| 607 |
with gr.Column():
|
| 608 |
gr.HTML(
|
| 609 |
"""<b><center>GPT + WolframAlpha + Whisper</center></b>
|
| 610 |
-
<p><center>
|
| 611 |
|
| 612 |
-
openai_api_key_textbox = gr.Textbox(placeholder="Paste your OpenAI API key (sk-...)",
|
| 613 |
show_label=False, lines=1, type='password')
|
| 614 |
|
| 615 |
with gr.Row():
|
|
|
|
| 607 |
with gr.Column():
|
| 608 |
gr.HTML(
|
| 609 |
"""<b><center>GPT + WolframAlpha + Whisper</center></b>
|
| 610 |
+
<p><center>Hit Enter after pasting your OpenAI API key</center></p>""")
|
| 611 |
|
| 612 |
+
openai_api_key_textbox = gr.Textbox(placeholder="Paste your OpenAI API key (sk-...) and hit Enter",
|
| 613 |
show_label=False, lines=1, type='password')
|
| 614 |
|
| 615 |
with gr.Row():
|