Katon1 commited on
Commit
a22bb25
verified
1 Parent(s): 3cd1f5e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -15
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
- def process_input(selected_action, user_input):
97
- if selected_action == "Generaci贸n de Im谩genes":
98
- # Manejamos el generador de progreso
99
- progress_generator = generate_image_with_progress(user_input)
100
- last_status = None
101
- last_image = None
102
- for status, image in progress_generator:
103
- last_status = status
104
- last_image = image
105
- return last_status, last_image
106
- else:
107
- model_handler.switch_model(selected_action)
108
- response = model_handler.generate_response(user_input)
109
- return response, None
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(