adi2606 commited on
Commit
fa66bf8
·
verified ·
1 Parent(s): 55e73b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -35,12 +35,12 @@ interface = gr.Interface(
35
  Welcome to the Math Wizard!
36
  Ask any math question, and let the wizard guide you through the solution step-by-step.
37
  """,
38
- allow_flagging=True,
39
  examples=[
40
  ["What is the integral of x^2?"],
41
  ["How do I solve a quadratic equation?"]
42
- ],
43
- theme="compact"
44
  )
45
 
46
- interface.launch()
 
 
35
  Welcome to the Math Wizard!
36
  Ask any math question, and let the wizard guide you through the solution step-by-step.
37
  """,
38
+ allow_flagging=False,
39
  examples=[
40
  ["What is the integral of x^2?"],
41
  ["How do I solve a quadratic equation?"]
42
+ ]
 
43
  )
44
 
45
+ if __name__ == "__main__":
46
+ interface.launch()