mirror of https://github.com/coqui-ai/TTS.git
Merge pull request #3381 from JRMeyer/licensing-message
Print message for either commercial license or CPML
This commit is contained in:
commit
4b35a1e756
|
@ -332,9 +332,9 @@ class ModelManager(object):
|
|||
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:
|
||||
|
|
Loading…
Reference in New Issue