Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
anirudhs
/
Web-Researcher-Public
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
anirudhs
commited on
Dec 30, 2024
Commit
49d13da
·
1 Parent(s):
d494713
initial commit
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -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
+