Spaces:
Build error
Build error
Commit
·
bd67da0
1
Parent(s):
cca3728
dddssds
Browse files- 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.
|
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.
|
195 |
-
services_btn: gr.
|
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(
|