Spaces:
Sleeping
Sleeping
File size: 255 Bytes
aa5176f aaa0960 aa5176f 4adf8b1 d5a3d59 1e2b4b4 |
1 2 3 4 5 6 7 8 9 10 11 |
import os
import gradio as gr
import helper
USERS = os.environ.get("USERS")
PWD = os.environ.get("PWD")
app = helper.registry(name="marco-o1")
if __name__ == "__main__":
app.launch(share=True, auth=[USERS, PWD], allowed_paths=["."], ssr_mode=False) |