Decart offers four specialized video models through the AI SDK. Each model is optimized for specific video generation tasks.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/DecartAI/ai-sdk-provider/llms.txt
Use this file to discover all available pages before exploring further.
Available Models
lucy-pro-t2v
Text-to-Video Generation Thelucy-pro-t2v model generates videos directly from text prompts without requiring an input image.
lucy-pro-t2v- Text-only input
- High-quality video generation
- Supports landscape (16:9) and portrait (9:16) orientations
- 720p and 480p resolution options
src/decart-video-settings.ts:2
lucy-pro-i2v
Image-to-Video Generation (Production) Thelucy-pro-i2v model animates static images into videos, guided by an optional text prompt.
lucy-pro-i2v- Requires input image
- Optional text prompt for animation guidance
- High-quality production-ready output
- Supports landscape and portrait orientations
examples/tasks/video-generation-i2v.ts:4
lucy-dev-i2v
Image-to-Video Generation (Development) Thelucy-dev-i2v model provides image-to-video capabilities optimized for development and testing workflows.
lucy-dev-i2v- Requires input image
- Optional text prompt for animation guidance
- Faster processing for development iteration
- Same API interface as
lucy-pro-i2v
- Rapid prototyping
- Testing animation concepts
- Development environments
src/decart-video-settings.ts:4
lucy-motion
Trajectory-Based Motion Control Thelucy-motion model enables precise control over camera and subject movement using trajectory points.
lucy-motion- Requires input image
- Trajectory-based motion control
- Precise frame-by-frame positioning
- Normalized coordinate system (0.0 to 1.0)
- Model definition:
src/decart-video-settings.ts:5 - Trajectory option:
src/decart-video-model.ts:22 - Example usage:
examples/tasks/video-generation-motion.ts:4
Model Comparison
| Feature | lucy-pro-t2v | lucy-pro-i2v | lucy-dev-i2v | lucy-motion |
|---|---|---|---|---|
| Input Type | Text only | Image + text | Image + text | Image + text + trajectory |
| Quality | Production | Production | Development | Production |
| Motion Control | Limited | Limited | Limited | Precise |
| Use Case | Text-to-video | Image animation | Dev/testing | Motion control |
| Trajectory Support | No | No | No | Yes |
Common Settings
All video models support these settings:Video aspect ratio. Supported values:
16:9 (landscape) and 9:16 (portrait).Seed value for reproducible results.
Video resolution. Supported values:
1280x720 (720p) and 854x480 (480p).See the Settings page for detailed configuration options.
API Specifications
All models implement the AI SDK’sVideoModelV3 specification:
v31 - Each call generates one videosrc/decart-video-model.ts:84-86
Next Steps
Text-to-Video Guide
Learn how to generate videos from text
Image-to-Video Guide
Animate images into videos
Motion Control
Control movement with trajectories
Settings Reference
Configure video generation