-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
33 lines (30 loc) · 1.85 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
API_KEY=unique_phrase_or_sequence_here
LISTENING_PORT=3000
SKIP_PIP=False
SKIP_BATCH=False
DEFAULT_MODEL=samantha
LISTENING_HOST=0.0.0.0
LISTENING_NAME=vits_tts_listener
LISTENING_IPV6=True
LISTENING_THREADS=4
VENV_NAME=venv
CUSTOM_MODELS=[]
# If you want to use custom models, put them in the models folder and add just the folder name to CUSTOM_MODELS
# NOTE: the structure should be:
# ./models/your_custom_model/ (folder with your custom model name)
# ./models/your_custom_model/metadata.csv (metadata from whisper transcription)
# ./models/your_custom_model/trainingoutput/ (training output from training)
# ./models/your_custom_model/trainingoutput/phoneme_cache/ (phoneme cache from training)
# ./models/your_custom_model/trainingoutput/phoneme_cache/* (phoneme cache files from training)
# *hashinfohere*I3dhdnMvU2FtLU9wZW5BSS1TZXQtM18x_phoneme.npy (example of phoneme cache file)
# ./models/your_custom_model/trainingoutput/trained_model/ (trained model from training)
# ./models/your_custom_model/trainingoutput/trained_model/* (trained model files from training)
# best_model.pth (example of best trained model file)
# checkpoint_xxxxxxxx.path (not required) (example of checkpoint trained model file)
# config.json (example of config file)
# ipykernel_launcher.py (example of ipykernel from training)
# new.py (example of new file from training)
# Waitress does not support SSL. Use a reverse proxy like nginx or caddy to handle SSL.
# USE_SSL=False
# SSL_CERT=
# SSL_KEY=