recipe-o-matic / app.py
danielritchie's picture
Update app.py
e30ba25
raw
history blame
211 Bytes
import gradio as gr
gr.Interface.load("models/flax-community/t5-recipe-generation",
inputs=gr.Textbox(lines=5, label="List of ingredients, separated by a comma") # customizes the input component
).launch()