Spaces:
Running
on
Zero
Running
on
Zero
new fal release
Browse files- app.py +4 -4
- app_ltx_video.py → app_fal.py +2 -1
- requirements.txt +1 -1
app.py
CHANGED
@@ -9,7 +9,7 @@ from app_flux import demo as demo_flux
|
|
9 |
from app_gemini import demo as demo_gemini
|
10 |
from app_groq import demo as demo_groq
|
11 |
from app_hyperbolic import demo as demo_hyperbolic
|
12 |
-
from
|
13 |
from app_marco_o1 import demo as demo_marco_o1
|
14 |
from app_mistral import demo as demo_mistral
|
15 |
from app_nvidia import demo as demo_nvidia
|
@@ -22,6 +22,9 @@ from app_xai import demo as demo_grok
|
|
22 |
from app_showui import demo as demo_showui
|
23 |
|
24 |
with gr.Blocks(fill_height=True) as demo:
|
|
|
|
|
|
|
25 |
with gr.Tab("Hyperbolic"):
|
26 |
demo_hyperbolic.render()
|
27 |
gr.Markdown(
|
@@ -77,9 +80,6 @@ with gr.Blocks(fill_height=True) as demo:
|
|
77 |
with gr.Tab("Marco-o1"):
|
78 |
demo_marco_o1.render()
|
79 |
gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
|
80 |
-
with gr.Tab("LTX Video"):
|
81 |
-
demo_ltx_video.render()
|
82 |
-
gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
|
83 |
with gr.Tab("Groq"):
|
84 |
demo_groq.render()
|
85 |
gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
|
|
|
9 |
from app_gemini import demo as demo_gemini
|
10 |
from app_groq import demo as demo_groq
|
11 |
from app_hyperbolic import demo as demo_hyperbolic
|
12 |
+
from app_fal import demo as demo_fal
|
13 |
from app_marco_o1 import demo as demo_marco_o1
|
14 |
from app_mistral import demo as demo_mistral
|
15 |
from app_nvidia import demo as demo_nvidia
|
|
|
22 |
from app_showui import demo as demo_showui
|
23 |
|
24 |
with gr.Blocks(fill_height=True) as demo:
|
25 |
+
with gr.Tab("Fal"):
|
26 |
+
demo_fal.render()
|
27 |
+
gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
|
28 |
with gr.Tab("Hyperbolic"):
|
29 |
demo_hyperbolic.render()
|
30 |
gr.Markdown(
|
|
|
80 |
with gr.Tab("Marco-o1"):
|
81 |
demo_marco_o1.render()
|
82 |
gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
|
|
|
|
|
|
|
83 |
with gr.Tab("Groq"):
|
84 |
demo_groq.render()
|
85 |
gr.Markdown("This app is built with gradio, check out gradio github and star: <a href='https://github.com/gradio-app/gradio'>Gradio <img src='https://img.shields.io/github/stars/gradio-app/gradio'></a>.")
|
app_ltx_video.py → app_fal.py
RENAMED
@@ -6,8 +6,9 @@ demo = get_app(
|
|
6 |
models=[
|
7 |
"fal-ai/ltx-video",
|
8 |
"fal-ai/ltx-video/image-to-video",
|
|
|
9 |
],
|
10 |
-
default_model="fal-ai/
|
11 |
src=fal_gradio.registry,
|
12 |
)
|
13 |
|
|
|
6 |
models=[
|
7 |
"fal-ai/ltx-video",
|
8 |
"fal-ai/ltx-video/image-to-video",
|
9 |
+
"fal-ai/luma-photon",
|
10 |
],
|
11 |
+
default_model="fal-ai/luma-photon",
|
12 |
src=fal_gradio.registry,
|
13 |
)
|
14 |
|
requirements.txt
CHANGED
@@ -48,7 +48,7 @@ exceptiongroup==1.2.2
|
|
48 |
# via anyio
|
49 |
fal-client==0.5.6
|
50 |
# via fal-gradio
|
51 |
-
fal-gradio @ git+https://github.com/AK391/fal-gradio.git@
|
52 |
# via anychat (pyproject.toml)
|
53 |
fastapi==0.115.5
|
54 |
# via gradio
|
|
|
48 |
# via anyio
|
49 |
fal-client==0.5.6
|
50 |
# via fal-gradio
|
51 |
+
fal-gradio @ git+https://github.com/AK391/fal-gradio.git@532ef6b7a51492320179495831f3f309b208d6a6
|
52 |
# via anychat (pyproject.toml)
|
53 |
fastapi==0.115.5
|
54 |
# via gradio
|