Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TohidA
/
InstructLlamaMONA
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
74d20b5
InstructLlamaMONA
/
app.py
TohidA
Added Gradio app
74d20b5
over 1 year ago
raw
Copy download link
history
blame
Safe
187 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
if
__name__ ==
"__main__"
:
iface.launch()