Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Slicelayers
/
live2d-test
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Slicelayers
commited on
Sep 6, 2025
Commit
847d4b2
·
verified
·
1 Parent(s):
4996da8
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import gradio as gr
2
+
3
+
def hello(name):
4
+
return f"こんにちは、{name} さん!"
5
+
6
+
demo = gr.Interface(fn=hello, inputs="text", outputs="text", title="テストアプリ")
7
+
8
+
if __name__ == "__main__":
9
+
demo.launch()