leoeric commited on
Commit
0e6f557
·
1 Parent(s): 86fdec4

Hide config path fields from UI - not needed for users

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -413,7 +413,8 @@ with gr.Blocks(title="STARFlow - Text-to-Image & Video Generation") as demo:
413
  image_config = gr.Textbox(
414
  label="⚙️ Config Path",
415
  value="configs/starflow_3B_t2i_256x256.yaml",
416
- interactive=False
 
417
  )
418
 
419
  with gr.Group():
@@ -488,7 +489,8 @@ with gr.Blocks(title="STARFlow - Text-to-Image & Video Generation") as demo:
488
  video_config = gr.Textbox(
489
  label="⚙️ Config Path",
490
  value="configs/starflow-v_7B_t2v_caus_480p.yaml",
491
- interactive=False
 
492
  )
493
 
494
  with gr.Group():
 
413
  image_config = gr.Textbox(
414
  label="⚙️ Config Path",
415
  value="configs/starflow_3B_t2i_256x256.yaml",
416
+ interactive=False,
417
+ visible=False # Hidden - not needed for users
418
  )
419
 
420
  with gr.Group():
 
489
  video_config = gr.Textbox(
490
  label="⚙️ Config Path",
491
  value="configs/starflow-v_7B_t2v_caus_480p.yaml",
492
+ interactive=False,
493
+ visible=False # Hidden - not needed for users
494
  )
495
 
496
  with gr.Group():