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...
ginipick
commited on
Mar 23
Commit
fb2486e
·
verified
·
1 Parent(s):
e197df8
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
import gradio as gr
2
+
3
+
demo = gr.Interface(
4
+
fn=lambda: "Hello World",
5
+
inputs=None,
6
+
outputs="text",
7
+
title="Hello World"
8
+
)
9
+
10
+
demo.launch()