Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
-
|
368 |
-
|
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()
|