Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zmbfeng
/
testchatbot
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
zmbfeng
commited on
Sep 25, 2023
Commit
a1e5063
·
1 Parent(s):
731de62
first commit
Browse files
Files changed (1)
hide
show
app.py
+2
-0
app.py
CHANGED
Viewed
@@ -1,3 +1,5 @@
1
def greet(name):
2
return "Hello " + name + "!!"
3
1
+
import gradio as gr
2
+
3
def greet(name):
4
return "Hello " + name + "!!"
5