Spaces:
Runtime error
Runtime error
import gradio as gr | |
description = "Story generation with GPT-2" | |
title = "Talk to Peter!" | |
examples = [["Peter:\ndo you like peanuts?"]] | |
interface = gr.Interface.load("huggingface/ethzanalytics/ai-msgbot-gpt2-M", | |
description=description, | |
examples=examples | |
) | |
interface.launch() | |