Update app.py
Browse files
app.py
CHANGED
@@ -4,4 +4,4 @@ import gradio as gr
|
|
4 |
|
5 |
examples=[["My name is Lewis and I like to"],["The weather today is"]]
|
6 |
textbox = gr.Textbox();
|
7 |
-
gr.Interface.load("huggingface/sberbank-ai/mGPT",textbox, textbox,examples=examples).launch()
|
|
|
4 |
|
5 |
examples=[["My name is Lewis and I like to"],["The weather today is"]]
|
6 |
textbox = gr.Textbox();
|
7 |
+
gr.Interface.load("huggingface/sberbank-ai/mGPT",inputs=textbox, outputs=textbox,examples=examples).launch()
|