acecalisto3 commited on
Commit
d21afbe
·
verified ·
1 Parent(s): 0aff4c1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -364,6 +364,11 @@ fn=run,
364
  title="""Fragmixt\nAgents With Agents,\nSurf With a Purpose""",
365
  examples=examples,
366
  concurrency_limit=20,
367
- with gr.Blocks() as iface:
368
- iface.launch()
369
- )
 
 
 
 
 
 
364
  title="""Fragmixt\nAgents With Agents,\nSurf With a Purpose""",
365
  examples=examples,
366
  concurrency_limit=20,
367
+
368
+ def main():
369
+ with gr.Blocks() as iface:
370
+ # your code here
371
+ pass
372
+
373
+ if __name__ == "__main__":
374
+ main()