Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nlpravi
/
T0demo
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d46b028
T0demo
/
app.py
nlpravi
Update app.py
d46b028
over 3 years ago
raw
Copy download link
history
blame
Safe
183 Bytes
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()