packages/hume/README.md
The Hume provider for the AI SDK contains support for the Hume API.
The Hume provider is available in the @ai-sdk/hume module. You can install it with
npm i @ai-sdk/hume
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 hume from @ai-sdk/hume:
import { hume } from '@ai-sdk/hume';
import { hume } from '@ai-sdk/hume';
import { experimental_generateSpeech as generateSpeech } from 'ai';
const result = await generateSpeech({
model: hume.speech('aurora'),
text: 'Hello, world!',
});
Please check out the Hume provider documentation for more information.