foodrequest / app.py
Helder Rodrigues
demo
5aa54db
raw
history blame
No virus
426 Bytes
import gradio as gr
description = "TWIX - Alexa Taskbot Challenge"
title = "Identify ingredients to add and remove"
examples = [["lobster is good and fish isn't"],["I want a tomatoes pizza with banana and no ham"]]
interface = gr.Interface.load("huggingface/harr/distilbert-base-uncased-finetuned-ingredients",
description=description,
examples=examples,
title=title
)
interface.launch()