Run open-source ML models in the cloud
Deploy and run thousands of open-source machine learning models through Replicate's simple API.
Use Replicate through Keystore with zero code changes. Keys are resolved from the vault and injected at request time.
import Keystore from "@keystore/sdk";
const ks = new Keystore({ agentToken: process.env.KS_TOKEN! });
ks.interceptAll();
const res = await fetch("https://api.replicate.com/v1/predictions", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
version: "stability-ai/sdxl:latest",
input: { prompt: "A futuristic city at sunset" },
}),
});
const prediction = await res.json();Request access and our concierge team will provision credentials for you — usually within 24 hours. No setup on your end.
Request Access