Please accept the Terms & Condition!

#40
by AlexProkop - opened

I can't synthesize speech because I'm being asked to accept the terms of use. I don't see the button itself, help

You can also set the environment variable COQUI_TOS_AGREED to 1.

See here in the code:

    def tos_agreed(model_item, model_full_path):
        """Check if the user has agreed to the terms of service"""
        if "tos_required" in model_item and model_item["tos_required"]:
            tos_path = os.path.join(model_full_path, "tos_agreed.txt")
            if os.path.exists(tos_path) or os.environ.get("COQUI_TOS_AGREED") == "1":
                return True
            return False
        return True

Sign up or log in to comment