new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

AI SDK · Providers · all subjects

replicate/models

7 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

Replicate text-to-image models list

Supported text-to-image models: black-forest-labs/flux-1.1-pro-ultra, black-forest-labs/flux-1.1-pro, black-forest-labs/flux-dev, black-forest-labs/flux-pro, black-forest-labs/flux-schnell, bytedance/sdxl-lightning-4step, fofr/aura-flow, fofr/latent-consistency-model, fofr/realvisxl-v3-multi-controlnet-lora, fofr/sdxl-emoji, fofr/sdxl-multi-controlnet-lora, ideogram-ai/ideogram-v2-turbo, ideogram-ai/ideogram-v2, lucataco/dreamshaper-xl-turbo, lucataco/open-dalle-v1.1, lucataco/realvisxl-v2.0, lucataco/realvisxl2-lcm, luma/photon-flash, luma/photon, nvidia/sana, playgroundai/playground-v2.5-1024px-aesthetic, recraft-ai/recraft-v3-svg, recraft-ai/recraft-v3, stability-ai/stable-diffusion-3.5-large-turbo, stability-ai/stable-diffusion-3.5-large, stability-ai/stable-diffusion-3.5-medium, tstramer/material-diffusion.

Replicate inpainting and image editing models

Supported inpainting and image editing models: black-forest-labs/flux-fill-pro, black-forest-labs/flux-fill-dev.

Replicate Flux-2 multi-reference image generation models

Flux-2 models support up to 8 input reference images for style transfer and composition: black-forest-labs/flux-2-pro, black-forest-labs/flux-2-dev.

Replicate versioned model ID format

Versioned models use the format `$modelId:$versionId`, for example `bytedance/sdxl-lightning-4step:5599ed30703defd1d160a25a63321b4dec97101d98b4674bcc56e41f62f35637`.

Replicate image generation basic usage example

Example of basic Replicate image generation: ```ts import { replicate } from '@ai-sdk/replicate'; import { generateImage } from 'ai'; import { writeFile } from 'node:fs/promises'; const { image } = await generateImage({ model: replicate.image('black-forest-labs/flux-schnell'), prompt: 'The Loch Ness Monster getting a manicure', aspectRatio: '16:9', }); await writeFile('image.webp', image.uint8Array); console.log('Image saved as image.webp'); ```

Replicate versioned models example

Example of using versioned Replicate models: ```ts import { replicate } from '@ai-sdk/replicate'; import { generateImage } from 'ai'; const { image } = await generateImage({ model: replicate.image( 'bytedance/sdxl-lightning-4step:5599ed30703defd1d160a25a63321b4dec97101d98b4674bcc56e41f62f35637', ), prompt: 'The Loch Ness Monster getting a manicure', }); ```

Pass any Replicate model ID as string

Any available Replicate model ID can be passed as a string if needed, beyond the explicitly documented models.

Give your agent this brain