Makima57 commited on
Commit
5b32090
Β·
verified Β·
1 Parent(s): 9065ab9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -158,13 +158,13 @@ custom_css = """
158
  interface = gr.Interface(
159
  fn=gradio_interface,
160
  inputs=[
161
- gr.Textbox(label="Math Question", placeholder="Enter your math question here...", elem_id="math_question", elem_classes="bold-label"),
162
- gr.Textbox(label="Correct Answer", placeholder="Enter the correct answer here...", elem_id="correct_answer", elem_classes="bold-label"),
163
  ],
164
  outputs=[
165
- gr.JSON(label="Results", elem_id="results"), # Display the results in a JSON format
166
  ],
167
- title="Math Question Solver",
168
  description="Enter a math question to get the model prediction and see all generated answers.",
169
  css=custom_css # Apply custom CSS
170
  )
 
158
  interface = gr.Interface(
159
  fn=gradio_interface,
160
  inputs=[
161
+ gr.Textbox(label="🧠 Math Question", placeholder="Enter your math question here...", elem_id="math_question", elem_classes="bold-label"),
162
+ gr.Textbox(label="βœ… Correct Answer", placeholder="Enter the correct answer here...", elem_id="correct_answer", elem_classes="bold-label"),
163
  ],
164
  outputs=[
165
+ gr.JSON(label="πŸ“Š Results"), # Display the results in a JSON format
166
  ],
167
+ title="πŸ”’ Math Question Solver",
168
  description="Enter a math question to get the model prediction and see all generated answers.",
169
  css=custom_css # Apply custom CSS
170
  )