UNPKG

@lobehub/tts

Version:

A high-quality & reliable TTS React Hooks library

10 lines (8 loc) 370 B
import { useOpenAISTTAutoStop } from "./useOpenAISTTAutoStop.mjs"; import { useOpenAISTTInteractive } from "./useOpenAISTTInteractive.mjs"; //#region src/react/useOpenAISTT/index.ts const useOpenAISTT = (locale, { autoStop, ...rest } = {}) => { return (autoStop ? useOpenAISTTAutoStop : useOpenAISTTInteractive)(locale, rest); }; //#endregion export { useOpenAISTT };