Spaces:
Runtime error
Runtime error
File size: 302 Bytes
b0fdb9e 45e2b25 b0fdb9e 45e2b25 b0fdb9e 45e2b25 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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()
|