jdclifton29 commited on
Commit
e5b4f41
·
verified ·
1 Parent(s): 9736431

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ HF_KEY = os.environ.get("hf_token")
2
+ username = os.environ.get("username")
3
+ password = os.environ.get("password")
4
+ demo = gr.load("trimble/ConstructibleCopilot", src="spaces")
5
+ demo.launch(auth=[(username, password)])