Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -101,10 +101,12 @@ with gr.Blocks() as demo:
|
|
101 |
)
|
102 |
text2 = gr.Textbox(
|
103 |
label="Context",
|
104 |
-
lines=
|
105 |
value="Cristiano Ronaldo is a player for Manchester United",
|
106 |
)
|
107 |
-
output = gr.Textbox(
|
|
|
|
|
108 |
b1 = gr.Button("Ask Question!")
|
109 |
b1.click(main, inputs=[text1, text2], outputs=output)
|
110 |
# gr.Markdown("""#### powered by [Tassle](https://bit.ly/3LXMklV)""")
|
|
|
101 |
)
|
102 |
text2 = gr.Textbox(
|
103 |
label="Context",
|
104 |
+
lines=5,
|
105 |
value="Cristiano Ronaldo is a player for Manchester United",
|
106 |
)
|
107 |
+
output = gr.Textbox(
|
108 |
+
label="Answer",
|
109 |
+
)
|
110 |
b1 = gr.Button("Ask Question!")
|
111 |
b1.click(main, inputs=[text1, text2], outputs=output)
|
112 |
# gr.Markdown("""#### powered by [Tassle](https://bit.ly/3LXMklV)""")
|