Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -124,7 +124,10 @@ with gr.Blocks() as demo:
|
|
124 |
with gr.Tab("Ask a Math Question"):
|
125 |
with gr.Row():
|
126 |
question_input = gr.Textbox(label="Enter your math question", lines=2)
|
127 |
-
|
|
|
|
|
|
|
128 |
hidden_q = gr.Textbox(visible=False)
|
129 |
hidden_a = gr.Textbox(visible=False)
|
130 |
submit_btn = gr.Button("Get Answer")
|
|
|
124 |
with gr.Tab("Ask a Math Question"):
|
125 |
with gr.Row():
|
126 |
question_input = gr.Textbox(label="Enter your math question", lines=2)
|
127 |
+
gr.Markdown("### 🧠 Answer:")
|
128 |
+
answer_output = gr.Markdown()
|
129 |
+
|
130 |
+
#answer_output = gr.Markdown(label="Answer")
|
131 |
hidden_q = gr.Textbox(visible=False)
|
132 |
hidden_a = gr.Textbox(visible=False)
|
133 |
submit_btn = gr.Button("Get Answer")
|