echogarden
Version:
An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.
17 lines (13 loc) • 402 B
text/typescript
export const appName = 'echogarden'
export interface EngineMetadata {
id: string
name: string
description: string
type: 'local' | 'server' | 'cloud'
}
export interface PlainTextOptions {
paragraphBreaks?: ParagraphBreakType
whitespace?: WhitespaceProcessing
}
export type ParagraphBreakType = 'single' | 'double'
export type WhitespaceProcessing = 'preserve' | 'removeLineBreaks' | 'collapse'