diff --git a/TTS/utils/manage.py b/TTS/utils/manage.py index 3952504d0b..463b840242 100644 --- a/TTS/utils/manage.py +++ b/TTS/utils/manage.py @@ -332,9 +332,9 @@ def _set_model_item(self, model_name): def ask_tos(model_full_path): """Ask the user to agree to the terms of service""" tos_path = os.path.join(model_full_path, "tos_agreed.txt") - print(" > You must agree to the terms of service to use this model.") - print(" | > Please see the terms of service at https://coqui.ai/cpml.txt") - print(' | > "I have read, understood and agreed to the Terms and Conditions." - [y/n]') + print(" > You must confirm the following:") + print(' | > "I have purchased a commercial license from Coqui: licensing@coqui.ai"') + print(' | > "Otherwise, I agree to the terms of the non-commercial CPML: https://coqui.ai/cpml" - [y/n]') answer = input(" | | > ") if answer.lower() == "y": with open(tos_path, "w", encoding="utf-8") as f: