Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
jan-hq/Llama3.1-s-v0.2
QuietImpostor
/
Llama-3.2s-1B-Instruct-v0.1
like
0
Sleeping
App
Files
Files
Community
87736a3
Llama-3.2s-1B-Instruct-v0.1
/
app.py
jan-hq
initial commit
c4b9526
verified
3 months ago
raw
Copy download link
history
blame
Safe
148 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()