Allen Park commited on
Commit
0b27a4e
·
1 Parent(s): 49a1729

add scale value of textbox input for document

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -164,9 +164,9 @@ with gr.Blocks(css=css) as demo:
164
  with gr.Row():
165
  with gr.Column(scale=1):
166
  with gr.Row():
167
- question = gr.Textbox(label="Question", scale=9)
168
  with gr.Row():
169
- document = gr.Textbox(label="Document")
170
  u = gr.UploadButton("Upload", file_count="single", scale=1)
171
  file_group = gr.Group(visible=False)
172
  with file_group:
 
164
  with gr.Row():
165
  with gr.Column(scale=1):
166
  with gr.Row():
167
+ question = gr.Textbox(label="Question")
168
  with gr.Row():
169
+ document = gr.Textbox(label="Document", scale=9)
170
  u = gr.UploadButton("Upload", file_count="single", scale=1)
171
  file_group = gr.Group(visible=False)
172
  with file_group: