Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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=
|
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 |
-
|
|
|
|
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()
|