Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
BlinkDL
/
RWKV-Gradio-1
like
450
Running
on
T4
App
Files
Files
Community
4
24b9beb
RWKV-Gradio-1
/
app.py
BlinkDL
Update app.py
4a9ff2c
almost 2 years ago
raw
Copy download link
history
blame
Safe
194 Bytes
import
gradio
as
gr
def
greet
(
name
):
return
'Please use https://huggingface.co/spaces/yahma/rwkv-14b first :)'
iface = gr.Interface(fn=greet, inputs=
"text"
, outputs=
"text"
)
iface.launch()