Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -66,7 +66,7 @@ print("PATH:", os.environ['PATH'])
|
|
66 |
print("LD_LIBRARY_PATH:", os.environ['LD_LIBRARY_PATH'])
|
67 |
|
68 |
from stf_utils import STFPipeline
|
69 |
-
|
70 |
|
71 |
|
72 |
# audio_path="assets/examples/driving/test_aud.mp3"
|
@@ -343,9 +343,9 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
|
343 |
outputs=video_input
|
344 |
)
|
345 |
|
346 |
-
#
|
347 |
-
|
348 |
-
|
349 |
|
350 |
demo.launch(
|
351 |
server_port=args.server_port,
|
|
|
66 |
print("LD_LIBRARY_PATH:", os.environ['LD_LIBRARY_PATH'])
|
67 |
|
68 |
from stf_utils import STFPipeline
|
69 |
+
from flux_schnell import create_flux_tab
|
70 |
|
71 |
|
72 |
# audio_path="assets/examples/driving/test_aud.mp3"
|
|
|
343 |
outputs=video_input
|
344 |
)
|
345 |
|
346 |
+
# 세 번째 탭: Flux 개발용 탭
|
347 |
+
with gr.Tab("FLUX Image"):
|
348 |
+
flux_demo = create_flux_tab(image_input) # Flux 개발용 탭 생성
|
349 |
|
350 |
demo.launch(
|
351 |
server_port=args.server_port,
|