Spaces:
Runtime error
Runtime error
File size: 307 Bytes
5a16046 e8fd69f 5a16046 a2901a2 5a16046 d94406a 5a16046 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import gradio as gr
from confidence import run
def greet(query):
results = run(query)
return results
sample_list = [
"Who is Lihu Chen?.",
"Who is Gaël Varoquaux?"
]
iface = gr.Interface(fn=greet, inputs="text", outputs="text", examples=sample_list, cache_examples=True)
iface.launch() |