czq commited on
Commit
ce47d6c
·
1 Parent(s): c4d5478

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -101,10 +101,12 @@ with gr.Blocks() as demo:
101
  )
102
  text2 = gr.Textbox(
103
  label="Context",
104
- lines=3,
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)""")