Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,7 +9,7 @@ with gr.Blocks() as demo:
|
|
9 |
with gr.Row():
|
10 |
textbox = gr.Textbox(placeholder="Type here and press enter...", lines=8)
|
11 |
with gr.Column():
|
12 |
-
btn gr.
|
13 |
|
14 |
btn.click(complete_with_gpt, textbox, textbox)
|
15 |
|
|
|
9 |
with gr.Row():
|
10 |
textbox = gr.Textbox(placeholder="Type here and press enter...", lines=8)
|
11 |
with gr.Column():
|
12 |
+
btn = gr.Button("Generate")
|
13 |
|
14 |
btn.click(complete_with_gpt, textbox, textbox)
|
15 |
|