The **Luma provider** for the [AI SDK](https://ai-sdk.dev/docs) contains support for Luma AI's state-of-the-art image generation models - Photon and Photon Flash.
npm install @ai-sdk/lumaThe Luma provider for the AI SDK contains support for Luma AI's state-of-the-art image generation models - Photon and Photon Flash.
Luma Photon and Photon Flash are groundbreaking image generation models that deliver:
- Ultra-high quality image generation
- 10x higher cost efficiency compared to similar models
- Superior prompt understanding and adherence
- Unique character consistency capabilities from single reference images
- Multi-image reference support for precise style matching
For more detailed information about the Luma models and their capabilities, please visit Luma AI.
The Luma provider is available in the @ai-sdk/luma module. You can install it with:
``bash`
npm i @ai-sdk/luma
If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
`shell`
npx skills add vercel/ai
You can import the default provider instance luma from @ai-sdk/luma:
`ts`
import { luma } from '@ai-sdk/luma';
`ts
import { luma } from '@ai-sdk/luma';
import { generateImage } from 'ai';
import fs from 'fs';
const { image } = await generateImage({
model: luma.image('photon-1'),
prompt: 'A serene mountain landscape at sunset',
});
const filename = image-${Date.now()}.png;Image saved to ${filename}
fs.writeFileSync(filename, image.uint8Array);
console.log();``
Please check out the Luma provider for more information.