From 759d9ab3ae9ae31918e26ee7ee683f3f9028fabb Mon Sep 17 00:00:00 2001 From: Josh Meyer Date: Thu, 7 Dec 2023 13:54:48 +0100 Subject: [PATCH] Print message for either commercial license or CPML --- TTS/utils/manage.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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: