mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-29 21:48:03 +02:00
18 lines
525 B
TypeScript
18 lines
525 B
TypeScript
// Shared speech-provider implementation helpers for bundled and third-party plugins.
|
|
|
|
export type { SpeechProviderPlugin } from "../plugins/types.js";
|
|
export type { SpeechVoiceOption } from "../tts/provider-types.js";
|
|
|
|
export {
|
|
edgeTTS,
|
|
elevenLabsTTS,
|
|
inferEdgeExtension,
|
|
OPENAI_TTS_MODELS,
|
|
OPENAI_TTS_VOICES,
|
|
openaiTTS,
|
|
parseTtsDirectives,
|
|
} from "../tts/tts-core.js";
|
|
|
|
export { resolvePreferredOpenClawTmpDir } from "../infra/tmp-openclaw-dir.js";
|
|
export { isVoiceCompatibleAudio } from "../media/audio.js";
|