Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -121,7 +121,7 @@ with gr.Blocks(theme='gradio/seafoam') as demo:
|
|
121 |
gr.Markdown(topics) # Show the topics on the left side
|
122 |
with gr.Row():
|
123 |
with gr.Column():
|
124 |
-
question = gr.Textbox(label="Your question", placeholder="What
|
125 |
answer = gr.Textbox(label="ChessBot Response", placeholder="ChessBot will respond here...", interactive=False, lines=10)
|
126 |
submit_button = gr.Button("Submit")
|
127 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|
|
|
121 |
gr.Markdown(topics) # Show the topics on the left side
|
122 |
with gr.Row():
|
123 |
with gr.Column():
|
124 |
+
question = gr.Textbox(label="Your question", placeholder="What would you like to know?")
|
125 |
answer = gr.Textbox(label="ChessBot Response", placeholder="ChessBot will respond here...", interactive=False, lines=10)
|
126 |
submit_button = gr.Button("Submit")
|
127 |
submit_button.click(fn=query_model, inputs=question, outputs=answer)
|