marcosremar2 commited on
Commit
bd67da0
·
1 Parent(s): cca3728
Files changed (1) hide show
  1. app_gradio_spaces.py +3 -3
app_gradio_spaces.py CHANGED
@@ -183,7 +183,7 @@ def create_chat_ui(setup_status="Not started", services_status="Not started"):
183
  def perform_auto_setup_on_load():
184
  # Update UI to show setup is starting
185
  yield {
186
- setup_output: gr.Textbox.update(value="Auto-starting setup process...")
187
  }
188
 
189
  # Actual setup call
@@ -191,8 +191,8 @@ def create_chat_ui(setup_status="Not started", services_status="Not started"):
191
 
192
  # Update UI with final status and enable next button
193
  yield {
194
- setup_output: gr.Textbox.update(value=final_setup_status_message),
195
- services_btn: gr.Button.update(interactive=True)
196
  }
197
 
198
  demo.load(
 
183
  def perform_auto_setup_on_load():
184
  # Update UI to show setup is starting
185
  yield {
186
+ setup_output: gr.update(value="Auto-starting setup process...")
187
  }
188
 
189
  # Actual setup call
 
191
 
192
  # Update UI with final status and enable next button
193
  yield {
194
+ setup_output: gr.update(value=final_setup_status_message),
195
+ services_btn: gr.update(interactive=True)
196
  }
197
 
198
  demo.load(