mGPT / app.py
ai-forever's picture
Update app.py
879e561
raw
history blame
379 Bytes
import gradio as gr
description = "Multilingual generation with mGPT"
title = "Generate your own example"
examples = [["""English: The vase with flowers is on the table.\nFinnish translation:"""]]
interface = gr.Interface.load("huggingface/sberbank-ai/mGPT",
description=description,
examples=examples,
theme = "peach"
)
interface.launch()