Spaces:
Runtime error
Runtime error
akshaytrikha
commited on
Commit
•
b15e5fa
1
Parent(s):
6593789
gr.Textbox() not gr.outputs.Textbox()
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ examples = [
|
|
29 |
demo = gr.Interface(
|
30 |
fn=generate,
|
31 |
inputs=gr.Textbox(lines=5, label="Prompt"),
|
32 |
-
outputs=gr.
|
33 |
examples=examples
|
34 |
)
|
35 |
|
|
|
29 |
demo = gr.Interface(
|
30 |
fn=generate,
|
31 |
inputs=gr.Textbox(lines=5, label="Prompt"),
|
32 |
+
outputs=gr.Textbox(label="Generated Trump Tweet"),
|
33 |
examples=examples
|
34 |
)
|
35 |
|