AI-Quotient commited on
Commit
6dc8c56
·
verified ·
1 Parent(s): e7b233c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -152,7 +152,7 @@ iface = gr.Interface(
152
  # Launch the app
153
  iface.launch() '''
154
 
155
- with gr.Blocks() as app:
156
  gr.Markdown("# PolyProb & PolyCritic AI 🤖")
157
  gr.Markdown('''PolyProb and PolyCritic are AI Agents that help users classify a problem into categories such as P, NP, NP-complete, NP-hard while
158
  providing clear, concise explanations of its reasoning. As part of AI Quotient’s Millennium Math Challenge, it is the first step towards solving the P vs NP problem.''')
@@ -175,4 +175,4 @@ with gr.Blocks() as app:
175
 
176
  #results_button.click(get_stored_results, outputs=results_display)
177
 
178
- app.launch(theme = gr.themes.Ocean())
 
152
  # Launch the app
153
  iface.launch() '''
154
 
155
+ with gr.Blocks(theme=gr.themes.Ocean()) as app:
156
  gr.Markdown("# PolyProb & PolyCritic AI 🤖")
157
  gr.Markdown('''PolyProb and PolyCritic are AI Agents that help users classify a problem into categories such as P, NP, NP-complete, NP-hard while
158
  providing clear, concise explanations of its reasoning. As part of AI Quotient’s Millennium Math Challenge, it is the first step towards solving the P vs NP problem.''')
 
175
 
176
  #results_button.click(get_stored_results, outputs=results_display)
177
 
178
+ app.launch()