Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -426,9 +426,9 @@ with tab1:
|
|
| 426 |
|
| 427 |
if valid_webinar_script_inputs:
|
| 428 |
try:
|
| 429 |
-
# Usar el spinner directamente en col2
|
| 430 |
with col2:
|
| 431 |
-
with st.spinner("Generando tu gui贸n de webinar..."):
|
| 432 |
generated_webinar_script = generate_webinar_script(
|
| 433 |
webinar_script_audience,
|
| 434 |
webinar_script_product,
|
|
@@ -489,9 +489,9 @@ with tab2:
|
|
| 489 |
|
| 490 |
if valid_webinar_name_inputs:
|
| 491 |
try:
|
| 492 |
-
# Usar el spinner directamente en col2
|
| 493 |
with col2:
|
| 494 |
-
with st.spinner("Generando tus nombres de webinar..."):
|
| 495 |
generated_webinar_names = generate_webinar_names(
|
| 496 |
number_of_names,
|
| 497 |
webinar_name_audience,
|
|
|
|
| 426 |
|
| 427 |
if valid_webinar_script_inputs:
|
| 428 |
try:
|
| 429 |
+
# Usar el spinner directamente en col2 con show_time=True
|
| 430 |
with col2:
|
| 431 |
+
with st.spinner("Generando tu gui贸n de webinar...", show_time=True):
|
| 432 |
generated_webinar_script = generate_webinar_script(
|
| 433 |
webinar_script_audience,
|
| 434 |
webinar_script_product,
|
|
|
|
| 489 |
|
| 490 |
if valid_webinar_name_inputs:
|
| 491 |
try:
|
| 492 |
+
# Usar el spinner directamente en col2 con show_time=True
|
| 493 |
with col2:
|
| 494 |
+
with st.spinner("Generando tus nombres de webinar...", show_time=True):
|
| 495 |
generated_webinar_names = generate_webinar_names(
|
| 496 |
number_of_names,
|
| 497 |
webinar_name_audience,
|