Replicate Automation
Automate Replicate AI model operations -- run predictions, upload files, inspect model schemas, list versions, and manage prediction history via the Composio MCP integration.
Author
Category
Development ToolsInstall
Hot:30
Download and extract to your skills directory
Copy command and send to AI Agent for auto-install:
Download and install this skill https://openskills.cc/api/download?slug=composiohq-composio-skills-replicate-automation&locale=en&source=copy
Replicate Automation - AI Model Workflow Automation
Skills Overview
Replicate Automation integrates with Composio MCP to automatically run Replicate AI model predictions, upload input files, check model architecture, list versions, and manage prediction history.
Use Cases
Core Features
FAQs
How do I run Replicate AI model predictions?
Use the
REPLICATE_MODELS_PREDICTIONS_CREATE tool, providing the model owner (e.g., black-forest-labs) and model name (e.g., flux-1.1-pro), along with model-specific input parameters. For quick tasks, set the wait_for parameter to synchronously wait for results; for long-running tasks, use webhooks to receive asynchronous notifications.What’s the difference between synchronous and asynchronous predictions?
Synchronous predictions set the
wait_for parameter (1–60 seconds) to directly wait for results, suitable for fast models. Asynchronous predictions do not set this parameter; the task runs in the background, and once completed, you retrieve results via webhook or by polling REPLICATE_PREDICTIONS_LIST. This is ideal for long-running image generation or video processing tasks.How do I view a model’s input/output schema?
Use the
REPLICATE_MODELS_GET tool by passing the model owner and name. The openapi_schema field in the result contains the complete input/output definitions. Input key names and types vary greatly across different models, so it’s recommended to check the schema before each prediction run to avoid parameter errors.