CodeBox / app_ltx_video.py
akhaliq's picture
akhaliq HF staff
disable all apis
0bfb67d
raw
history blame
310 Bytes
import os
import fal_gradio
from utils import get_app
demo = get_app(
models=[
"fal-ai/ltx-video",
"fal-ai/ltx-video/image-to-video",
],
default_model="fal-ai/ltx-video/image-to-video",
src=fal_gradio.registry,
is_chat=False
)
if __name__ == "__main__":
demo.launch()