Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Deepmind1
/
tiktok-ai
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
60f223e
tiktok-ai
/
app.py
Deepmind1
Create app.py
72e38ca
verified
2 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
193 Bytes
import
gradio
as
gr
def
test
():
return
"OK - Space working ✅"
demo = gr.Interface(
fn=test,
inputs=[],
outputs=
"text"
)
demo.launch(server_name=
"0.0.0.0"
, server_port=
7860
)