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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -149,7 +149,7 @@ Output a rigorous proof or meaningful insight even when a full proof is impossib
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.HTML(label="Result"), # Output as HTML
153
  title="Theorem proving agent",
154
  description="Enter a logical formula using Z3 syntax to check its satisfiability."
155
  )
 
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
  )