Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -16,7 +16,7 @@ with gr.Blocks() as demo:
|
|
| 16 |
with gr.Row():
|
| 17 |
inp = gr.Textbox(placeholder="Describe your character...")
|
| 18 |
out = gr.Textbox()
|
| 19 |
-
btn = gr.Button("
|
| 20 |
btn.click(fn=chatgpt, inputs=inp, outputs=out)
|
| 21 |
|
| 22 |
|
|
|
|
| 16 |
with gr.Row():
|
| 17 |
inp = gr.Textbox(placeholder="Describe your character...")
|
| 18 |
out = gr.Textbox()
|
| 19 |
+
btn = gr.Button("Ask ChatGPT to generate a detailed description.")
|
| 20 |
btn.click(fn=chatgpt, inputs=inp, outputs=out)
|
| 21 |
|
| 22 |
|