Yeyito's picture
Test
eb5eda7
raw
history blame
173 Bytes
import gradio as gr
def greet(model):
return "This model has a similarity score of: meh!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()