dogutcu commited on
Commit
06d532c
·
verified ·
1 Parent(s): 2111471

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -140,7 +140,7 @@ with gr.Blocks(theme='gradio/seafoam') as demo:
140
  with gr.Row():
141
  with gr.Column():
142
  question = gr.Textbox(label="Your question", placeholder="What would you like to know?")
143
- answer = gr.Textbox(label="CompBot Response", placeholder="CompBot will respond here...", interactive=False, lines=20)
144
  submit_button = gr.Button("Submit")
145
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
146
 
 
140
  with gr.Row():
141
  with gr.Column():
142
  question = gr.Textbox(label="Your question", placeholder="What would you like to know?")
143
+ answer = gr.Textbox(label="CompBot Response", placeholder="CompBot will respond here...", interactive=False, lines=16)
144
  submit_button = gr.Button("Submit")
145
  submit_button.click(fn=query_model, inputs=question, outputs=answer)
146