File size: 194 Bytes
4a2c956
 
 
4a9ff2c
4a2c956
 
 
1
2
3
4
5
6
7
8
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()