Wootang01's picture
Update app.py
204cd46
Raw
History Blame
276 Bytes
import gradio as gr
from transformers import pipeline
pipe=pipeline(task="text-generation", model="bigscience/bloom")
gr.Interface.from_pipeline(pipe, title="Text Generator Five w/ Variables", description="Input your text, submit and the machine will output text.").launch()