Spaces:
basit123796
/
Runtime error

Tonic commited on
Commit
80a95ed
ยท
verified ยท
1 Parent(s): 2a01fa1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -28,9 +28,9 @@ def main():
28
  gr.Markdown(title)
29
  with gr.Row():
30
  question = gr.Textbox(lines=5, label="Enter your math problem")
31
- max_tokens = gr.Slider(minimum=150, maximum=1200, default=250, label="Max Tokens")
32
  submit_button = gr.Button("Solve")
33
- output = gr.Textbox(label="รฐลธโ€ยฎรฐลธยชโ€žDeepSeekรฐลธโ€œโ€ฐMath")
34
 
35
  submit_button.click(fn=solve_math_problem, inputs=[question, max_tokens], outputs=output)
36
 
 
28
  gr.Markdown(title)
29
  with gr.Row():
30
  question = gr.Textbox(lines=5, label="Enter your math problem")
31
+ max_tokens = gr.Slider(minimum=150, maximum=1200, value=250, label="Max Tokens")
32
  submit_button = gr.Button("Solve")
33
+ output = gr.Textbox(label="๐Ÿ”ฎDeepSeekMath๐Ÿ“‰")
34
 
35
  submit_button.click(fn=solve_math_problem, inputs=[question, max_tokens], outputs=output)
36