Update app.py
Browse files
app.py
CHANGED
|
@@ -23,8 +23,8 @@ def text_2_text_generation(input):
|
|
| 23 |
|
| 24 |
iface = gr.Interface(
|
| 25 |
fn = text_2_text_generation,
|
| 26 |
-
inputs = gr.
|
| 27 |
-
outputs = gr.
|
| 28 |
)
|
| 29 |
|
| 30 |
iface.launch()
|
|
|
|
| 23 |
|
| 24 |
iface = gr.Interface(
|
| 25 |
fn = text_2_text_generation,
|
| 26 |
+
inputs = gr.Textbox(label = "Enter your queries...", lines = 5),
|
| 27 |
+
outputs = gr.Textbox(lines = 5)
|
| 28 |
)
|
| 29 |
|
| 30 |
iface.launch()
|