@ai-toolkit/replicate
TypeScript icon, indicating that this package has built-in type declarations

0.1.12 • Public • Published

AI TOOLKIT - Replicate Provider

The Replicate provider for the AI TOOLKIT contains image model support for the Replicate API.

Setup

The Replicate provider is available in the @ai-toolkit/replicate module. You can install it with

npm i @ai-toolkit/replicate

Usage

import { replicate } from '@ai-toolkit/replicate';
import { experimental_generateImage as generateImage } from 'ai-toolkit';

const { image } = await generateImage({
  model: replicate.image('black-forest-labs/flux-schnell'),
  prompt: 'The Loch Ness Monster getting a manicure',
});

const filename = `image-${Date.now()}.png`;
fs.writeFileSync(filename, image.uint8Array);
console.log(`Image saved to ${filename}`);

If you want to pass additional inputs to the model besides the prompt, use the providerOptions.replicate property:

const { image } = await generateImage({
  model: replicate.image('recraft-ai/recraft-v3'),
  prompt: 'The Loch Ness Monster getting a manicure',
  size: '1365x1024',
  providerOptions: {
    replicate: {
      style: 'realistic_image',
    },
  },
});

Documentation

Please check out the Replicate provider for more information.

Readme

Keywords

Package Sidebar

Install

npm i @ai-toolkit/replicate

Weekly Downloads

3

Version

0.1.12

License

Apache-2.0

Unpacked Size

39.6 kB

Total Files

9

Last publish

Collaborators

  • khulnasoft-lab