Back to Ai

AI SDK - Hume Provider

packages/hume/README.md

2.1.101014 B
Original Source

AI SDK - Hume Provider

The Hume provider for the AI SDK contains support for the Hume API.

Setup

The Hume provider is available in the @ai-sdk/hume module. You can install it with

bash
npm i @ai-sdk/hume

Skill 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:

shell
npx skills add vercel/ai

Provider Instance

You can import the default provider instance hume from @ai-sdk/hume:

ts
import { hume } from '@ai-sdk/hume';

Example

ts
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.