basic-chatbot / app.py
Jay Silverman
optimized description
4311c4d
raw
history blame contribute delete
313 Bytes
import gradio as gr
gr.load(
"huggingface/distilgpt2",
inputs=gr.Textbox(lines=5, label="Start typing your story."),
title="Goos story completion bot",
description="This model will complete stories for you.",
examples=["Once upon a time, there was a human named Justin Honold and"]
).launch()