Skip to content

Commit

Permalink
add Minimax
Browse files Browse the repository at this point in the history
  • Loading branch information
jbilcke-hf committed Nov 25, 2024
1 parent b5cd0d0 commit 63ce5b6
Showing 1 changed file with 24 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,24 +48,44 @@ TODO: add those as well
// ------------------------------------------------------------------------------
export const defaultWorkflows: ClapWorkflow[] = [
{
id: 'falai://fal-ai/kling-video/v1/standard/text-to-video',
label: 'Kling 1.0',
id: 'falai://fal-ai/minimax-video',
label: 'Minimax',
description: '',
tags: ['video generation'],
author: '',
thumbnailUrl: '',
nonCommercial: true,
nonCommercial: false,

engine: ClapWorkflowEngine.REST_API,
provider: ClapWorkflowProvider.FALAI,
category: ClapWorkflowCategory.VIDEO_GENERATION,
data: 'fal-ai/kling-video/v1/standard/text-to-video',
data: 'fal-ai/minimax-video',
schema: '',
inputFields: [genericPrompt],
inputValues: {
[genericPrompt.id]: genericPrompt.defaultValue,
},
},
{
id: 'falai://fal-ai/minimax-video/image-to-video',
label: 'Minimax',
description: '',
tags: ['video generation'],
author: '',
thumbnailUrl: '',
nonCommercial: false,

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

0 comments on commit 63ce5b6

Please sign in to comment.