File size: 385 Bytes
aa5176f
aaa0960
 
 
0bed690
 
 
 
aa5176f
4adf8b1
d5a3d59
 
d86d2f4
1
2
3
4
5
6
7
8
9
10
11
12
13
import os
import gradio as gr
import helper

USER_NINA = os.environ.get("USER_NINA")
USER_GUTO = os.environ.get("USER_GUTO")
PWD_NINA = os.environ.get("PWD_NINA")
PWD_GUTO = os.environ.get("PWD_GUTO")

app = helper.registry(name="marco-o1")

if __name__ == "__main__":
    app.launch(share=True, auth=[(USER_NINA, PWD_NINA), (USER_GUTO, PWD_GUTO)], allowed_paths=["."], ssr_mode=False)