clueai / app.py
mcgame's picture
Update app.py
f5553c1
import gradio as gr
description = "故事续写"
title = "AI帮你写故事"
examples = [["Adventurer is approached by a mysterious stranger in the tavern for a new quest."]]
interface = gr.Interface.load("huggingface/pranavpsv/gpt2-genre-story-generator",
description=description,
examples=examples
)
interface.launch()