ChatRWKV-gradio / app.py
BlinkDL's picture
Update app.py
4a9ff2c
raw
history blame
No virus
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()