Update app.py
Browse files
app.py
CHANGED
@@ -184,7 +184,7 @@ with gr.Blocks(theme=theme) as demo:
|
|
184 |
with gr.Row():
|
185 |
with gr.Column():
|
186 |
question = gr.Textbox(label="Your Request", placeholder="What would you like to talk about?")
|
187 |
-
answer = gr.Textbox(label="
|
188 |
submit_button = gr.Button("Submit")
|
189 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
190 |
demo.launch()
|
|
|
184 |
with gr.Row():
|
185 |
with gr.Column():
|
186 |
question = gr.Textbox(label="Your Request", placeholder="What would you like to talk about?")
|
187 |
+
answer = gr.Textbox(label="CalmBot's Response", placeholder="CalmConnect will respond here...", interactive=False, lines=17)
|
188 |
submit_button = gr.Button("Submit")
|
189 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
190 |
demo.launch()
|