mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-30 11:21:07 +00:00
29 lines
866 B
TypeScript
29 lines
866 B
TypeScript
// Shared speech-provider implementation helpers for bundled and third-party plugins.
|
|
|
|
export type { SpeechProviderPlugin } from "../plugins/types.js";
|
|
export type {
|
|
SpeechDirectiveTokenParseContext,
|
|
SpeechDirectiveTokenParseResult,
|
|
SpeechListVoicesRequest,
|
|
SpeechModelOverridePolicy,
|
|
SpeechProviderConfig,
|
|
SpeechProviderConfiguredContext,
|
|
SpeechProviderResolveConfigContext,
|
|
SpeechProviderResolveTalkConfigContext,
|
|
SpeechProviderResolveTalkOverridesContext,
|
|
SpeechProviderOverrides,
|
|
SpeechSynthesisRequest,
|
|
SpeechTelephonySynthesisRequest,
|
|
SpeechVoiceOption,
|
|
TtsDirectiveOverrides,
|
|
TtsDirectiveParseResult,
|
|
} from "../tts/provider-types.js";
|
|
|
|
export {
|
|
normalizeApplyTextNormalization,
|
|
normalizeLanguageCode,
|
|
normalizeSeed,
|
|
requireInRange,
|
|
} from "../tts/tts-core.js";
|
|
export { parseTtsDirectives } from "../tts/directives.js";
|