Travis Corrigan
Update app.py
f139735
import gradio as gr
description = "Story generation with GPT"
examples = [["An adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
demo = gr.Interface.load("models/EleutherAI/gpt-j-6B", description=description, examples=examples)
demo.launch()