Spaces:
Sleeping
Sleeping
Lautaro Cardarelli
commited on
Commit
·
a552682
1
Parent(s):
a58d979
fix interfaces
Browse files
app.py
CHANGED
@@ -105,7 +105,6 @@ questions_output = gr.Textbox(label="Preguntas", lines=5)
|
|
105 |
|
106 |
|
107 |
demo = gr.Interface(fn=process, inputs=textbox_input, outputs=[summary_output, questions_output])
|
108 |
-
demo.launch()
|
109 |
|
110 |
|
111 |
def chatbot_response(user_input):
|
@@ -122,4 +121,5 @@ chatbot_interface = gr.Interface(
|
|
122 |
title="Chatbot"
|
123 |
)
|
124 |
|
125 |
-
chatbot_interface.launch()
|
|
|
|
105 |
|
106 |
|
107 |
demo = gr.Interface(fn=process, inputs=textbox_input, outputs=[summary_output, questions_output])
|
|
|
108 |
|
109 |
|
110 |
def chatbot_response(user_input):
|
|
|
121 |
title="Chatbot"
|
122 |
)
|
123 |
|
124 |
+
chatbot_interface.launch()
|
125 |
+
demo.launch()
|