marco-o1 / main.py
rodrigomasini's picture
Update main.py
1e2b4b4 verified
raw
history blame
255 Bytes
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)