hercai
Version:
A powerful library for interacting with the Herc.ai API
12 lines (11 loc) • 459 B
TypeScript
export declare namespace AudioSpeech {
type AudioBuffer = Buffer;
type AudioFormat = 'mp3' | 'wav' | 'pcm16';
type AudioModel = 'openai/Nova' | 'openai/Sage' | 'openai/Alloy' | 'openai/Echo' | 'openai/Fable' | 'openai/Onyx' | 'openai/Shimmer' | 'openai/Coral' | 'openai/Ash' | 'openai/Ballad';
interface CreateAudioSpeech {
model: AudioModel;
input: string;
format?: AudioFormat;
instructions?: string;
}
}