Apps
Text to Speech App

Text to Speech App

Text to Speech App is organized like a chat window. The sidebar stores your past interactions, letting you revisit past conversations, pick up where you left off or start a new thread.

Generated files are stored for long-term usage.

You can use this app to convert text into natural-sounding speech, using different voices.

Text to Speech App

Config

You can change config in ./src/configs/apps/textToSpeechApp.ts.

// Select tts model.
export const TEXT_TO_SPEECH_APP_MODEL = OPENAI_TEXT_TO_SPEECH_MODEL_TTS_1;
 
export const TEXT_TO_SPEECH_APP_MAX_CHAR_COUNT = ...;
 
// Rate limit request count per user.
export const TEXT_TO_SPEECH_APP_RATE_LIMIT_REQUEST_COUNT = ...;
// Rate limit window.
export const TEXT_TO_SPEECH_APP_RATE_LIMIT_WINDOW = '...';