Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -93,21 +93,23 @@ with gr.Blocks(title="Multi-Model LLM Chatbot with Image Generation") as demo:
|
|
93 |
submit_button = gr.Button("Enviar")
|
94 |
|
95 |
# Define la funci贸n de actualizaci贸n
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
|
|
|
|
111 |
|
112 |
# Conecta la funci贸n a los componentes
|
113 |
submit_button.click(
|
|
|
93 |
submit_button = gr.Button("Enviar")
|
94 |
|
95 |
# Define la funci贸n de actualizaci贸n
|
96 |
+
def process_input(selected_action, user_input):
|
97 |
+
try:
|
98 |
+
if selected_action == "Generaci贸n de Im谩genes":
|
99 |
+
# Manejamos el generador de progreso
|
100 |
+
progress_generator = generate_image_with_progress(user_input)
|
101 |
+
last_status = None
|
102 |
+
last_image = None
|
103 |
+
for status, image in progress_generator:
|
104 |
+
last_status = status
|
105 |
+
last_image = image
|
106 |
+
return last_status, last_image
|
107 |
+
else:
|
108 |
+
model_handler.switch_model(selected_action)
|
109 |
+
response = model_handler.generate_response(user_input)
|
110 |
+
return response, None
|
111 |
+
except Exception as e:
|
112 |
+
return f"Error: {e}", None
|
113 |
|
114 |
# Conecta la funci贸n a los componentes
|
115 |
submit_button.click(
|