Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
ginigen
/
hwp-agent
like
3
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
hwp-agent
/
app.py
ginipick
Create app.py
fb2486e
verified
2 months ago
raw
Copy download link
history
blame
Safe
149 Bytes
import
gradio
as
gr
demo = gr.Interface(
fn=
lambda
:
"Hello World"
,
inputs=
None
,
outputs=
"text"
,
title=
"Hello World"
)
demo.launch()