Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tripsby
/
travel-genie-json-public
like
2
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
hamzaf
commited on
Jul 25, 2023
Commit
02e1f13
·
1 Parent(s):
de1ec81
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
2
+
import gradio as gr
3
+
import os
4
+
HF_token = os.environ.get('HF_token')
5
+
6
+
iface = gr.load('tripsby/travel-genie-json', src='spaces', api_key=HF_token )
7
+
iface.launch()