Spaces:
Sleeping
Sleeping
import gradio as gr | |
description = "TWIX - Alexa Taskbot Challenge" | |
title = "Identify ingredients to add and remove v2" | |
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", | |
inputs=gr.Textbox(label="Food Request"), | |
description=description, | |
examples=examples, | |
title=title | |
) | |
interface.launch() |