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
main
LLMExs
/
app.py
cleverer123
xx
4a7a181
3 months ago
raw
Copy download link
history
blame
contribute
delete
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
)