Quick Generate Image/Video
atlas_quick_generateGenerate images or videos by searching models with keywords, automatically configuring parameters, and submitting tasks in one step.
Instructions
One-step image or video generation - automatically finds the model by keyword, fetches its schema, builds parameters, and submits the task.
IMPORTANT: If this tool fails to find a model, call atlas_list_models first to get the exact model list, then use atlas_generate_image or atlas_generate_video with the exact model ID instead.
The tool searches for models by keyword matching against model ID, display name, and tags. After getting the prediction ID, use atlas_get_prediction to check the result.
Args:
model_keyword (string, required): A keyword to search for the model. Use the model's display name or key words (e.g., "Nano Banana", "Seedream", "Kling", "Vidu", "Seedance")
type (string, required): Generation type: "Image" or "Video"
prompt (string, required): Text description of what to generate
image_url (string, optional): Source image URL for image-to-video or image editing models
extra_params (object, optional): Additional model-specific parameters to override defaults (e.g., {"duration": 10, "aspect_ratio": "16:9"})
Returns: A prediction ID to check the result with atlas_get_prediction.
Examples:
model_keyword="nano banana", type="Image", prompt="a cute cat in space"
model_keyword="seedream v5", type="Image", prompt="sunset over mountains"
model_keyword="kling v3", type="Video", prompt="a rocket launching", extra_params={"duration": 5}
model_keyword="seedance", type="Video", prompt="camera panning right", image_url="https://example.com/photo.jpg"
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| model_keyword | Yes | Keyword to find the model (e.g., "nano banana", "seedream", "kling v3") | |
| type | Yes | Generation type: Image or Video | |
| prompt | Yes | Text description of what to generate | |
| image_url | No | Source image URL for image-to-video or image editing models | |
| extra_params | No | Additional model-specific parameters to override defaults |