Skip to content

Commit

Permalink
add LTXV (Lightricks Video model)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbilcke-hf committed Nov 25, 2024
1 parent 63ce5b6 commit ae9c68e
Showing 1 changed file with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,45 @@ TODO: add those as well
// -> we can create a ticket to fix this
// ------------------------------------------------------------------------------
export const defaultWorkflows: ClapWorkflow[] = [
{
id: 'falai://fal-ai/ltx-video',
label: 'LTX Text-to-Video',
description: '',
tags: ['video generation'],
author: '',
thumbnailUrl: '',
nonCommercial: true,

engine: ClapWorkflowEngine.REST_API,
provider: ClapWorkflowProvider.FALAI,
category: ClapWorkflowCategory.VIDEO_GENERATION,
data: 'fal-ai/ltx-video',
schema: '',
inputFields: [genericPrompt],
inputValues: {
[genericPrompt.id]: genericPrompt.defaultValue,
},
},
{
id: 'falai://fal-ai/ltx-video/image-to-video',
label: 'LTX Image-to-Video',
description: '',
tags: ['video generation'],
author: '',
thumbnailUrl: '',
nonCommercial: true,

engine: ClapWorkflowEngine.REST_API,
provider: ClapWorkflowProvider.FALAI,
category: ClapWorkflowCategory.VIDEO_GENERATION,
data: 'fal-ai/ltx-video/image-to-video',
schema: '',
inputFields: [genericPrompt, genericImageUrl],
inputValues: {
[genericPrompt.id]: genericPrompt.defaultValue,
[genericImageUrl.id]: genericImageUrl.defaultValue,
},
},
{
id: 'falai://fal-ai/minimax-video',
label: 'Minimax',
Expand Down

0 comments on commit ae9c68e

Please sign in to comment.