Skip to content

Commit

Permalink
Merge pull request #3381 from JRMeyer/licensing-message
Browse files Browse the repository at this point in the history
Print message for either commercial license or CPML
  • Loading branch information
erogol authored Dec 7, 2023
2 parents 6b2ba52 + 759d9ab commit 4b35a1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TTS/utils/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4b35a1e

Please sign in to comment.