Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Xiaolong-Wang
/
PointLLM
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
86abf3b
PointLLM
/
app.py
Xiaolong-Wang
Update app.py
86abf3b
almost 2 years ago
raw
Copy download link
history
blame
Safe
213 Bytes
import
gradio
as
gr
user_name =
''
def
greet
(
name
):
global
user_name
user_name += name
return
"Hello "
+ user_name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()