Generate Video
atlas_generate_videoSubmit video generation requests using Atlas Cloud's AI models. Specify model ID and parameters to create videos from text prompts or images, then check results with prediction ID.
Instructions
Generate a video using Atlas Cloud API.
This tool submits the generation request and returns immediately with a prediction ID. Use atlas_get_prediction to check the result later.
IMPORTANT: The "model" parameter requires an exact model ID (e.g., "kling-video/kling-v3.0-standard-text-to-video"). If you don't know the exact model ID, you MUST first call atlas_list_models with type="Video" to find it. Do NOT guess model IDs.
You should also use atlas_get_model_info to see the full parameter list and schema for your chosen video model before calling this tool.
Args:
model (string, required): The exact video model ID. Use atlas_list_models to find valid IDs.
params (object, required): Model-specific parameters as a JSON object. Parameters vary by model - use atlas_get_model_info to see available params. Common ones include:
"prompt" (string): Text description of the video
"image_url" (string): Source image for image-to-video models
"duration" (number): Video duration in seconds
"aspect_ratio" (string): e.g., "16:9", "9:16"
Returns: A prediction ID to check the result with atlas_get_prediction. Video generation typically takes 1-5 minutes.
Examples:
model="kling-video/kling-v3.0-standard-text-to-video", params={"prompt": "a rocket launching into space", "duration": 5}
model="bytedance/seedance-v1.5-pro-image-to-video", params={"prompt": "camera panning right", "image_url": "https://example.com/photo.jpg"}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model | Yes | Video model ID | |
| params | Yes | Model-specific parameters as JSON object. Use atlas_get_model_info to see available parameters for your chosen model. |