Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
HKDI-project
/
contents
like
0
Follow
Haechansol knowledge Development Institute
License:
bigcode-openrail-m
Model card
Files
Files and versions
xet
Community
main
contents
/
app.py
bunmei21c
Update app.py
2d3c702
verified
9 months ago
raw
Copy download link
history
blame
contribute
delete
163 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(
fn=greet,
inputs=
"text"
,
outputs=
"text"
)
demo.launch()