2019-05-13 03:07:38 +03:00
|
|
|
# Main settings of Leon
|
2021-05-31 02:53:49 +03:00
|
|
|
# https://docs.getleon.ai/configuration
|
2019-05-13 03:07:38 +03:00
|
|
|
|
2019-02-10 15:26:50 +03:00
|
|
|
# Language currently used
|
|
|
|
LEON_LANG=en-US
|
|
|
|
|
|
|
|
# Server
|
2019-05-25 07:07:11 +03:00
|
|
|
LEON_HOST=http://localhost
|
|
|
|
LEON_PORT=1337
|
2019-02-10 15:26:50 +03:00
|
|
|
|
|
|
|
# Time zone (current one by default)
|
|
|
|
LEON_TIME_ZONE=
|
|
|
|
|
|
|
|
# Enable/disable after speech
|
|
|
|
LEON_AFTER_SPEECH=false
|
|
|
|
|
|
|
|
# Enable/disable Leon's speech-to-text
|
|
|
|
LEON_STT=false
|
|
|
|
# Speech-to-text provider
|
|
|
|
LEON_STT_PROVIDER=deepspeech
|
|
|
|
|
|
|
|
# Enable/disable Leon's text-to-speech
|
|
|
|
LEON_TTS=false
|
|
|
|
# Text-to-speech provider
|
|
|
|
LEON_TTS_PROVIDER=flite
|
|
|
|
|
2021-12-30 18:06:30 +03:00
|
|
|
# Enable/disable packages to be available over HTTP
|
|
|
|
PACKAGES_OVER_HTTP=true
|
|
|
|
|
2019-02-10 15:26:50 +03:00
|
|
|
# Enable/disable collaborative logger
|
|
|
|
LEON_LOGGER=true
|
|
|
|
|
|
|
|
# Path to the Pipfile
|
|
|
|
PIPENV_PIPFILE=bridges/python/Pipfile
|
|
|
|
|
|
|
|
# Path to the virtual env in .venv/
|
|
|
|
PIPENV_VENV_IN_PROJECT=true
|
|
|
|
|
|
|
|
# Fix https://click.palletsprojects.com/en/7.x/python3/#python-3-surrogate-handling
|
2019-02-24 11:46:19 +03:00
|
|
|
# If Leon replies you something like "Sorry, it seems I have a problem with the ... module" but
|
|
|
|
# still gives you the right answer, then:
|
2019-02-24 11:49:14 +03:00
|
|
|
## 1. Run `locale -a`
|
|
|
|
## 2. Pick a locale
|
|
|
|
## 3. Replace the LC_ALL and LANG values with the needed locale
|
2019-02-10 15:26:50 +03:00
|
|
|
LC_ALL=C.UTF-8
|
|
|
|
LANG=C.UTF-8
|