# Use a pipeline as a high-level helper
from transformers import pipeline
import gradio as gr
# Description
title = r"""
Product description generator
"""
css = """
.gradio-container {width: 85% !important}
"""
with gr.Blocks(css=css) as demo:
# description
gr.Markdown(title)
demo.launch()