Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -228,7 +228,7 @@ with gr.Blocks(theme="Nymbo/Nymbo_Theme") as demo:
|
|
228 |
featured_model_radio = gr.Radio(
|
229 |
label="Select a model below",
|
230 |
choices=models_list,
|
231 |
-
value="
|
232 |
interactive=True
|
233 |
)
|
234 |
|
@@ -286,7 +286,7 @@ with gr.Blocks(theme="Nymbo/Nymbo_Theme") as demo:
|
|
286 |
label="Frames Per Second"
|
287 |
)
|
288 |
|
289 |
-
|
290 |
with gr.Row():
|
291 |
num_inference_steps = gr.Slider(
|
292 |
minimum=1,
|
@@ -320,7 +320,8 @@ with gr.Blocks(theme="Nymbo/Nymbo_Theme") as demo:
|
|
320 |
step=1,
|
321 |
label="Seed (-1 for random)"
|
322 |
)
|
323 |
-
|
|
|
324 |
# Provider selection
|
325 |
providers_list = [
|
326 |
"hf-inference", # Default Hugging Face Inference
|
|
|
228 |
featured_model_radio = gr.Radio(
|
229 |
label="Select a model below",
|
230 |
choices=models_list,
|
231 |
+
value="Lightricks/LTX-Video",
|
232 |
interactive=True
|
233 |
)
|
234 |
|
|
|
286 |
label="Frames Per Second"
|
287 |
)
|
288 |
|
289 |
+
# Adding the sliders from the right column to the left column
|
290 |
with gr.Row():
|
291 |
num_inference_steps = gr.Slider(
|
292 |
minimum=1,
|
|
|
320 |
step=1,
|
321 |
label="Seed (-1 for random)"
|
322 |
)
|
323 |
+
|
324 |
+
with gr.Column():
|
325 |
# Provider selection
|
326 |
providers_list = [
|
327 |
"hf-inference", # Default Hugging Face Inference
|