AI-Quotient commited on
Commit
9d26912
·
verified ·
1 Parent(s): 41bcd2d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
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 Formula (e.g., x > 5 and y < 10)"),
152
- outputs=gr.Markdown(label="Result"), # Output as HTML
153
  title="Theorem proving agent",
154
- description="Enter a logical formula using Z3 syntax to check its satisfiability."
 
 
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