Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
UCSB-SURFI/VulnLLM-R
00Boobs00
/
VulnLLM-R
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b2d9ce7
VulnLLM-R
/
app.py
yuzhounie
Add application file
b2d9ce7
4 months ago
raw
Copy download link
history
blame
Safe
147 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
"Hello "
+ name +
"!!"
demo = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
demo.launch()