Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -13,4 +13,4 @@ def predict(input, history=[]):
|
|
13 |
|
14 |
return response, history
|
15 |
|
16 |
-
gr.Interface(fn=predict, title="DialoGPT-large", inputs=[gr.inputs.Textbox(placeholder="Write a text message as if writing a text message to a human."), "state"], outputs=[gr.outputs.Textbox(label="Output")
|
|
|
13 |
|
14 |
return response, history
|
15 |
|
16 |
+
gr.Interface(fn=predict, title="DialoGPT-large", inputs=[gr.inputs.Textbox(placeholder="Write a text message as if writing a text message to a human."), "state"], outputs=[gr.outputs.Textbox(label="Output"), "state"]).launch()
|