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