Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
uc-msai631-2025-spring
/
Group_5_Project
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
StevenMSAI
commited on
Oct 11
Commit
ef871ab
·
verified
·
1 Parent(s):
f6dce15
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+3
-0
app.py
ADDED
Viewed
@@ -0,0 +1,3 @@
1
+
import gradio as gr
2
+
def greet(name): return f"Hello {name}!!"
3
+
gr.Interface(fn=greet, inputs="text", outputs="text", title="Group 5 Project").launch()