File size: 183 Bytes
c05e76c
 
 
 
 
d46b028
 
c05e76c
1
2
3
4
5
6
7
8
import gradio as gr

def greet(name):
    return "Hello " + name + "!!"

iface = gr.Interface.load("huggingface/bigscience/T0pp")
iface("Is food taxable in Wisconsin?")
iface.launch()