Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -149,7 +149,7 @@ with gr.Blocks(theme='gradio/seafoam') as demo:
|
|
149 |
with gr.Row():
|
150 |
with gr.Column():
|
151 |
question = gr.Textbox(label="Your question", placeholder="What would you like to know?")
|
152 |
-
answer = gr.Textbox(label="CompBot Response", placeholder="CompBot will respond here...", interactive=False, lines=
|
153 |
submit_button = gr.Button("Submit")
|
154 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
155 |
|
|
|
149 |
with gr.Row():
|
150 |
with gr.Column():
|
151 |
question = gr.Textbox(label="Your question", placeholder="What would you like to know?")
|
152 |
+
answer = gr.Textbox(label="CompBot Response", placeholder="CompBot will respond here...", interactive=False, lines=14)
|
153 |
submit_button = gr.Button("Submit")
|
154 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
155 |
|