replicate-mini
v1.0.4
Published
A low-level Node.js client for Replicate's HTTP API
Downloads
73
Readme
replicate-mini ✨
A low-level Node.js client for Replicate's HTTP API, autogenerated from an OpenAPI schema.
This library works, but it's experimental. If you're looking for something more stable, check out Replicate's official JavaScript client.
Installation
npm install replicate-mini
Usage
Create a Replicate API token and set the REPLICATE_API_TOKEN
environment variable:
export REPLICATE_API_TOKEN=r8_...
Then create the client:
import Replicate from 'replicate-mini'
const replicate = new Replicate()
Then make requests:
const prediction = await replicate.predictions.create({
version: '5c7d5dc6dd8bf75c1acaa8565735e7986bc5b66206b55cca93cb72c9bf15ccaa',
input: { text: 'whirled peas' }
})
console.log({ prediction })
Operations
- account.get - Get the authenticated account
- collections.list - List collections of models
- collections.get - Get a collection of models
- deployments.list - List deployments
- deployments.create - Create a deployment
- deployments.delete - Delete a deployment
- deployments.get - Get a deployment
- deployments.update - Update a deployment
- deployments.predictions.create - Create a prediction using a deployment
- hardware.list - List available hardware for models
- models.list - List public models
- models.create - Create a model
- models.search - Search public models
- models.delete - Delete a model
- models.get - Get a model
- models.predictions.create - Create a prediction using an official model
- models.versions.list - List model versions
- models.versions.delete - Delete a model version
- models.versions.get - Get a model version
- trainings.create - Create a training
- predictions.list - List predictions
- predictions.create - Create a prediction
- predictions.get - Get a prediction
- predictions.cancel - Cancel a prediction
- trainings.list - List trainings
- trainings.get - Get a training
- trainings.cancel - Cancel a training
- webhooks.default.secret.get - Get the signing secret for the default webhook
Get the authenticated account
List collections of models
Get a collection of models
Params:
collection_slug
: Required. The slug of the collection, likesuper-resolution
orimage-restoration
. See replicate.com/collections.
List deployments
Create a deployment
Params:
hardware
: Required. The SKU for the hardware used to run the modelmax_instances
: Required. The maximum number of instances for scalingmin_instances
: Required. The minimum number of instances for scalingmodel
: Required. The full name of the model that you want to deploy ename
: Required. The name of the deploymentversion
: Required. The 64-character string ID of the model version that you want to deploy
Delete a deployment
Params:
deployment_owner
: Required. The name of the user or organization that owns the deployment.deployment_name
: Required. The name of the deployment.
Get a deployment
Params:
deployment_owner
: Required. The name of the user or organization that owns the deployment.deployment_name
: Required. The name of the deployment.
Update a deployment
Params:
deployment_owner
: Required. The name of the user or organization that owns the deployment.deployment_name
: Required. The name of the deployment.hardware
: The SKU for the hardware used to run the modelmax_instances
: The maximum number of instances for scalingmin_instances
: The minimum number of instances for scalingversion
: The ID of the model version that you want to deploy
Create a prediction using a deployment
Params:
deployment_owner
: Required. The name of the user or organization that owns the deployment.deployment_name
: Required. The name of the deployment.input
: Required. The model's input as a JSON objectPrefer
: Leave the request open and wait for the model to finish generating output. Set towait=n
where n is a number of seconds between 1 and 60.
See https://replicate.com/docs/topics/predictions/create-a-prediction#sync-mode for more information.
stream
: **This field is deprecatedwebhook
: An HTTPS URL for receiving a webhook when the prediction has new outputwebhook_events_filter
: By default, we will send requests to your webhook URL whenever there are new outputs or the prediction has finished
List available hardware for models
List public models
Create a model
Params:
hardware
: Required. The SKU for the hardware used to run the modelname
: Required. The name of the modelowner
: Required. The name of the user or organization that will own the modelvisibility
: Required. Whether the model should be public or privatecover_image_url
: A URL for the model's cover imagedescription
: A description of the modelgithub_url
: A URL for the model's source code on GitHublicense_url
: A URL for the model's licensepaper_url
: A URL for the model's paper
Search public models
Delete a model
Params:
model_owner
: Required. The name of the user or organization that owns the model.model_name
: Required. The name of the model.
Get a model
Params:
model_owner
: Required. The name of the user or organization that owns the model.model_name
: Required. The name of the model.
Create a prediction using an official model
Params:
model_owner
: Required. The name of the user or organization that owns the model.model_name
: Required. The name of the model.input
: Required. The model's input as a JSON objectPrefer
: Leave the request open and wait for the model to finish generating output. Set towait=n
where n is a number of seconds between 1 and 60.
See https://replicate.com/docs/topics/predictions/create-a-prediction#sync-mode for more information.
stream
: **This field is deprecatedwebhook
: An HTTPS URL for receiving a webhook when the prediction has new outputwebhook_events_filter
: By default, we will send requests to your webhook URL whenever there are new outputs or the prediction has finished
List model versions
Params:
model_owner
: Required. The name of the user or organization that owns the model.model_name
: Required. The name of the model.
Delete a model version
Params:
model_owner
: Required. The name of the user or organization that owns the model.model_name
: Required. The name of the model.version_id
: Required. The ID of the version.
Get a model version
Params:
model_owner
: Required. The name of the user or organization that owns the model.model_name
: Required. The name of the model.version_id
: Required. The ID of the version.
Create a training
Params:
model_owner
: Required. The name of the user or organization that owns the model.model_name
: Required. The name of the model.version_id
: Required. The ID of the version.destination
: Required. A string representing the desired model to push to in the format{destination_model_owner}/{destination_model_name}
input
: Required. An object containing inputs to the Cog model'strain()
functionwebhook
: An HTTPS URL for receiving a webhook when the training completeswebhook_events_filter
: By default, we will send requests to your webhook URL whenever there are new outputs or the training has finished
List predictions
Create a prediction
Params:
input
: Required. The model's input as a JSON objectversion
: Required. The ID of the model version that you want to runPrefer
: Leave the request open and wait for the model to finish generating output. Set towait=n
where n is a number of seconds between 1 and 60.
See https://replicate.com/docs/topics/predictions/create-a-prediction#sync-mode for more information.
stream
: **This field is deprecatedwebhook
: An HTTPS URL for receiving a webhook when the prediction has new outputwebhook_events_filter
: By default, we will send requests to your webhook URL whenever there are new outputs or the prediction has finished
Get a prediction
Params:
prediction_id
: Required. The ID of the prediction to get.
Cancel a prediction
Params:
prediction_id
: Required. The ID of the prediction to cancel.
List trainings
Get a training
Params:
training_id
: Required. The ID of the training to get.
Cancel a training
Params:
training_id
: Required. The ID of the training you want to cancel.
Get the signing secret for the default webhook
How it works
- The OpenAPI schema is downloaded and dereferenced at build time.
- The tree-shaped OpenAPI schema is flattened into a an array of "operations".
- Each operation object is massaged a bit to make it easier to generate the docs and client.
- Every method has the same signature:
- It takes a single params object as its only argument.
- Some of the params are required and some are optional.
- The params may be part of the request body, the URL path, query params, or headers. But you don't think about that. You just pass in an object and the library constructs the proper request for you.