Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
gautamethiraj
/
sutra-x
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
gautamethiraj
commited on
Jun 18, 2024
Commit
5251dfa
·
verified
·
1 Parent(s):
0d3e3c9
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
import os
3
+
4
+
hf_token = os.environ['GRADIO_API_KEY']
5
+
6
+
demo = gr.load("gautamethiraj/talk-to-ttl", src="spaces", hf_token=hf_token)
7
+
demo.launch()