feat: add (untested) polly module
This commit is contained in:
+6
-1
@@ -10,6 +10,9 @@ export interface Config {
|
||||
tts_elevenlabs_key: string | undefined;
|
||||
|
||||
steam_webapi_key: string | undefined;
|
||||
|
||||
aws_access_id: string | undefined;
|
||||
aws_access_key: string | undefined;
|
||||
}
|
||||
|
||||
function loadConfig(): Config {
|
||||
@@ -28,7 +31,9 @@ function loadConfig(): Config {
|
||||
tts_default_voice: process.env.DEFAULT_TTS_VOICE,
|
||||
tts_azure_key: process.env.TTS_AZURE_KEY,
|
||||
tts_elevenlabs_key: process.env.TTS_ELEVENLABS_KEY,
|
||||
steam_webapi_key: process.env.STEAM_WEBAPI_KEY
|
||||
steam_webapi_key: process.env.STEAM_WEBAPI_KEY,
|
||||
aws_access_id: process.env.AWS_ACCESS_ID,
|
||||
aws_access_key: process.env.AWS_ACCESS_KEY
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user