packages/lmnt/README.md
The LMNT provider for the AI SDK contains language model support for the LMNT API.
The LMNT provider is available in the @ai-sdk/lmnt module. You can install it with
npm i @ai-sdk/lmnt
If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
npx skills add vercel/ai
You can import the default provider instance lmnt from @ai-sdk/lmnt:
import { lmnt } from '@ai-sdk/lmnt';
import { lmnt } from '@ai-sdk/lmnt';
import { experimental_generateSpeech as generateSpeech } from 'ai';
const result = await generateSpeech({
model: lmnt.speech('aurora'),
text: 'Hello, world!',
});
Please check out the LMNT provider documentation for more information.