Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -148,10 +148,12 @@ Output a rigorous proof or meaningful insight even when a full proof is impossib
|
|
148 |
|
149 |
iface = gr.Interface(
|
150 |
fn=theorem_prover,
|
151 |
-
inputs=gr.Textbox(label="Enter
|
152 |
-
outputs=gr.Markdown(label="
|
153 |
title="Theorem proving agent",
|
154 |
-
description="
|
|
|
|
|
155 |
)
|
156 |
|
157 |
# Launch the app
|
|
|
148 |
|
149 |
iface = gr.Interface(
|
150 |
fn=theorem_prover,
|
151 |
+
inputs=gr.Textbox(label="Enter the theorem you want to prove or disprove"),
|
152 |
+
outputs=gr.Markdown(label="Agent's response"), # Output as HTML
|
153 |
title="Theorem proving agent",
|
154 |
+
description="Theorem Proving Agent is an AI-powered system that autonomously selects proof strategies and generates formal proofs for mathematical theorems. As part of AI Quotient’s Millennium Math Challenge, it advances automated reasoning to tackle some of the hardest unsolved problems in mathematics.",
|
155 |
+
theme = gr.themes.Ocean(),
|
156 |
+
examples = ["Every prime number greater than 2 is odd.", "The sum of two rational numbers is always rational.", "The power set of any set has strictly greater cardinality than the set itself."]
|
157 |
)
|
158 |
|
159 |
# Launch the app
|