Spaces:
Sleeping
Sleeping
Cperkins14
commited on
Commit
•
048e259
1
Parent(s):
3ea44cb
Update app.py
Browse files
app.py
CHANGED
@@ -119,7 +119,7 @@ with gr.Blocks(theme='JohnSmith9982/small_and_pretty') as demo:
|
|
119 |
with gr.Row():
|
120 |
with gr.Column():
|
121 |
question = gr.Textbox(label="Your question", placeholder="What do you want to ask about?")
|
122 |
-
answer = gr.Textbox(label="
|
123 |
submit_button = gr.Button("Submit")
|
124 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
125 |
|
|
|
119 |
with gr.Row():
|
120 |
with gr.Column():
|
121 |
question = gr.Textbox(label="Your question", placeholder="What do you want to ask about?")
|
122 |
+
answer = gr.Textbox(label="StudyBot Response", placeholder="StudyBot will respond here...", interactive=False, lines=10)
|
123 |
submit_button = gr.Button("Submit")
|
124 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
125 |
|