Spaces:
Running
on
Zero
Running
on
Zero
Commit
·
4d1c772
1
Parent(s):
6310258
Removing warning.
Browse files
app.py
CHANGED
|
@@ -322,7 +322,7 @@ def create_empty_error_outputs(log_message=""):
|
|
| 322 |
|
| 323 |
# --- Gradio UI Definition ---
|
| 324 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
| 325 |
-
gr.Markdown("# Autoforge Web UI
|
| 326 |
|
| 327 |
filament_df_state = gr.State(initial_df.copy())
|
| 328 |
current_run_output_dir = gr.State(None)
|
|
@@ -866,4 +866,4 @@ if __name__ == "__main__":
|
|
| 866 |
except Exception as e:
|
| 867 |
print(f"Could not write default {DEFAULT_MATERIALS_CSV}: {e}")
|
| 868 |
print("To run the UI, execute: python app.py") # Corrected to python app.py
|
| 869 |
-
demo.queue(default_concurrency_limit=
|
|
|
|
| 322 |
|
| 323 |
# --- Gradio UI Definition ---
|
| 324 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
| 325 |
+
gr.Markdown("# Autoforge Web UI")
|
| 326 |
|
| 327 |
filament_df_state = gr.State(initial_df.copy())
|
| 328 |
current_run_output_dir = gr.State(None)
|
|
|
|
| 866 |
except Exception as e:
|
| 867 |
print(f"Could not write default {DEFAULT_MATERIALS_CSV}: {e}")
|
| 868 |
print("To run the UI, execute: python app.py") # Corrected to python app.py
|
| 869 |
+
demo.queue(default_concurrency_limit=16).launch(share=False)
|