File size: 364 Bytes
5a16046
cf63839
5a16046
 
 
e1ba83a
5a16046
 
 
 
cf63839
5a16046
 
d94406a
5a16046
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gradio as gr
from confidence import run_nli


def greet(query):
    results = run_nli(query, sample_size=3)
    return results


sample_list = [
    "Tell me something about Albert Einstein, e.g., birth date and place and short bio ",
]

iface = gr.Interface(fn=greet, inputs="text", outputs="text", examples=sample_list, cache_examples=True)
iface.launch()