Rewrite frontend as single self-contained HTML file — all CSS/JS inline, no external files to fail loading

This commit is contained in:
2026-05-13 17:24:10 +02:00
parent 3432d362e2
commit ddb0f88257
116 changed files with 4240 additions and 921 deletions

View File

@@ -0,0 +1,17 @@
import { TTSProvider, TTSProviderConfig, TTSOptions, TTSResult } from '../../interfaces';
/**
* OpenAI TTS Provider Implementation
*/
export declare class OpenAITTSProvider implements TTSProvider {
private config;
private openai;
constructor(config: TTSProviderConfig);
/**
* Convert text to speech
* @param text - Text to convert to speech
* @param outputPath - Output path for the audio file
* @param options - Additional options
* @returns Duration of the generated audio in seconds and cost
*/
textToSpeech(text: string, outputPath: string, options?: TTSOptions): Promise<TTSResult>;
}