Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
ChanLeoAlex
/
LLMExs
like
0
License:
gpl-3.0
Model card
Files
Files and versions
Community
b2d7f68
LLMExs
/
app.py
ChanLeoAlex
create app.py
409f4b5
verified
3 months ago
raw
Copy download link
history
blame
Safe
170 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!"
demo = gr.Interface(
fn=greet,
inputs=
"text"
,
outputs=
"text"
)
demo.launch(share=
True
)