@ai-sdk/lmnt
v3.0.9
Published
The **[LMNT provider](https://ai-sdk.dev/providers/ai-sdk-providers/lmnt)** for the [AI SDK](https://ai-sdk.dev/docs) contains language model support for the LMNT API.
Keywords
Readme
AI SDK - LMNT Provider
The LMNT provider for the AI SDK contains language model support for the LMNT API.
Deploying to Vercel? With Vercel's AI Gateway you can access LMNT (and hundreds of models from other providers) — no additional packages, API keys, or extra cost. Get started with AI Gateway.
Setup
The LMNT provider is available in the @ai-sdk/lmnt module. You can install it with
npm i @ai-sdk/lmntSkill for Coding Agents
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/aiProvider Instance
You can import the default provider instance lmnt from @ai-sdk/lmnt:
import { lmnt } from '@ai-sdk/lmnt';Example
import { lmnt } from '@ai-sdk/lmnt';
import { generateSpeech } from 'ai';
const result = await generateSpeech({
model: lmnt.speech('aurora'),
text: 'Hello, world!',
});Documentation
Please check out the LMNT provider documentation for more information.
