diff --git a/debian/resources/applications.sh b/debian/resources/applications.sh index 1a07171..f4df0c4 100755 --- a/debian/resources/applications.sh +++ b/debian/resources/applications.sh @@ -14,6 +14,9 @@ fi if [ .$application_speech = .'true' ]; then git clone https://github.com/fusionpbx/fusionpbx-app-speech.git speech fi +if [ .$application_language_model = .'true' ]; then + git clone https://github.com/fusionpbx/fusionpbx-app-language_model.git language_model +fi if [ .$application_device_logs = .'true' ]; then git clone https://github.com/fusionpbx/fusionpbx-app-device_logs.git device_logs fi diff --git a/debian/resources/config.sh b/debian/resources/config.sh index 3d51dd0..c76685c 100755 --- a/debian/resources/config.sh +++ b/debian/resources/config.sh @@ -33,6 +33,7 @@ letsencrypt_folder=true # true or false # Optional Applications application_transcribe=true # Speech to Text application_speech=true # Text to Speech +application_language_model=true # Language model application_device_logs=true # Log device provision requests application_dialplan_tools=false # Add additional dialplan applications application_edit=false # Editor for XML, Provision, Scripts, and PHP diff --git a/ubuntu/resources/applications.sh b/ubuntu/resources/applications.sh index 1684441..6d4adbc 100644 --- a/ubuntu/resources/applications.sh +++ b/ubuntu/resources/applications.sh @@ -14,6 +14,9 @@ fi if [ .$application_speech = .'true' ]; then git clone https://github.com/fusionpbx/fusionpbx-app-speech.git speech fi +if [ .$application_language_model = .'true' ]; then + git clone https://github.com/fusionpbx/fusionpbx-app-language_model.git language_model +fi if [ .$application_device_logs = .'true' ]; then git clone https://github.com/fusionpbx/fusionpbx-app-device_logs.git device_logs fi diff --git a/ubuntu/resources/config.sh b/ubuntu/resources/config.sh index 9e6ddd6..8c51f4a 100755 --- a/ubuntu/resources/config.sh +++ b/ubuntu/resources/config.sh @@ -33,6 +33,7 @@ letsencrypt_folder=true # true or false # Optional Applications application_transcribe=true # Speech to Text application_speech=true # Text to Speech +application_language_model=true # Language model application_device_logs=true # Log device provision requests application_dialplan_tools=false # Add additional dialplan applications application_edit=false # Editor for XML, Provision, Scripts, and PHP