mirror of
https://github.com/moltbot/moltbot.git
synced 2026-03-27 14:28:06 +00:00
8 lines
426 B
TypeScript
8 lines
426 B
TypeScript
// Public speech-provider builders for bundled or third-party plugins.
|
|
|
|
export { buildElevenLabsSpeechProvider } from "../tts/providers/elevenlabs.js";
|
|
export { buildMicrosoftSpeechProvider } from "../tts/providers/microsoft.js";
|
|
export { buildOpenAISpeechProvider } from "../tts/providers/openai.js";
|
|
export { parseTtsDirectives } from "../tts/tts-core.js";
|
|
export type { SpeechVoiceOption } from "../tts/provider-types.js";
|