feat: add empty tts module

This commit is contained in:
2026-01-13 17:48:48 -03:00
parent 0e171894d5
commit b4cb95793b
+11
View File
@@ -0,0 +1,11 @@
import { TTSModule, TTSResponse } from '../tts';
const ttsNone: TTSModule = {
name: 'None',
getVoices: async (): Promise<Array<string>> => [],
generate: async (): Promise<TTSResponse> => {
return { data: Buffer.from([]) };
}
};
export default ttsNone;