anirudhs commited on
Commit
49d13da
·
1 Parent(s): d494713

initial commit

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ import os
3
+
4
+ hf_token = os.getenviron['HF_TOKEN']
5
+
6
+ iface = gr.load(name="anirudhs/new-space", hf_token=hf_token, src="spaces")
7
+ iface.queue(api_open=False).launch(show_api=False)
8
+