Replicate

Learn how to use Replicate with Composio

Overview

Enum

REPLICATE

Description

Replicate allows users to run AI models via a cloud API without managing infrastructure.

Authentication Details

bearer_token
stringRequired

Actions

Tool to get details of a file by its id. use when you need to inspect uploaded file information before further operations.

Action Parameters

file_id
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to list all files created by the user or organization. use after authenticating to fetch files list.

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to get details of a specific model by owner and name. use when you need model metadata (schema, urls) before running predictions.

Action Parameters

model_name
stringRequired
model_owner
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to get the readme content for a model in markdown format. use after retrieving model details when you want to view its documentation.

Action Parameters

model_name
stringRequired
model_owner
stringRequired

Action Response

data
object
error
string
successful
boolean
Tool to list all collections of models. use when you need to retrieve available model collections.

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to create a file by uploading content. use when you need to upload and store a file for later reference.

Action Parameters

content
stringRequired
filename
stringRequired
metadata
object
type
stringDefaults to application/octet-stream

Action Response

data
object
error
string
successful
boolean
Tool to create a prediction for a given deployment. use when you need to run model inference with specified inputs. use 'wait for' to wait until the prediction completes.

Action Parameters

deployment_name
stringRequired
deployment_owner
stringRequired
input
objectRequired
wait_for
integer
webhook
string
webhook_events_filter
array

Action Response

data
object
error
string
successful
boolean
Tool to list example predictions for a specific model. use when you want to retrieve author-provided illustrative examples after identifying the model.

Action Parameters

model_name
stringRequired
model_owner
stringRequired

Action Response

data
object
error
string
successful
boolean