Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
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 |
|