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:
TrinasAI
/
README
like
0
No application file
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Diamond2015
commited on
Nov 6, 2025
Commit
e40f007
·
verified
·
1 Parent(s):
0c3bfc7
Create app .py
Browse files
Files changed (1)
hide
show
app .py
+8
-0
app .py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import gradio as gr
2
+
3
+
def say_hello(name):
4
+
return f"Hello {name}, this is your Hugging Face AI!"
5
+
6
+
demo = gr.Interface(fn=say_hello, inputs="text", outputs="text", title="Test AI")
7
+
8
+
demo.launch()