Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -34,8 +34,8 @@ output_textbox = gr.outputs.Textbox(label="Generated Text")
|
|
34 |
|
35 |
demo = gr.Interface(
|
36 |
fn=generate,
|
37 |
-
inputs=
|
38 |
-
outputs=
|
39 |
examples=examples
|
40 |
)
|
41 |
|
|
|
34 |
|
35 |
demo = gr.Interface(
|
36 |
fn=generate,
|
37 |
+
inputs=gr.Textbox(lines=5, label="Input Text"),
|
38 |
+
outputs=gr.Textbox(label="Generated Text"),
|
39 |
examples=examples
|
40 |
)
|
41 |
|