90a03a3 eb5eda7 90a03a3
1
2
3
4
5
6
7
8
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()