Update app.py
Browse files
app.py
CHANGED
@@ -25,4 +25,4 @@ def predict1(text):
|
|
25 |
texto = gr.Textbox(placeholder='Escribe aquí...')
|
26 |
|
27 |
# Creamos las interfaces y las lanzamos.
|
28 |
-
gr.Interface(fn=predict1, inputs=[texto], outputs="text")
|
|
|
25 |
texto = gr.Textbox(placeholder='Escribe aquí...')
|
26 |
|
27 |
# Creamos las interfaces y las lanzamos.
|
28 |
+
gr.Interface(fn=predict1, inputs=[texto], outputs="text").launch(share=True)
|