diff --git a/prompting/__init__.py b/prompting/__init__.py index ead464f4e..1639249d7 100644 --- a/prompting/__init__.py +++ b/prompting/__init__.py @@ -16,7 +16,7 @@ # DEALINGS IN THE SOFTWARE. # Define the version of the template module. -__version__ = "2.5.1" +__version__ = "2.5.2" version_split = __version__.split(".") __spec_version__ = ( (10000 * int(version_split[0])) diff --git a/prompting/utils/config.py b/prompting/utils/config.py index ba61e076a..67ae5b94d 100644 --- a/prompting/utils/config.py +++ b/prompting/utils/config.py @@ -373,14 +373,14 @@ def add_validator_args(cls, parser): "--wandb.project_name", type=str, help="The name of the project where you are sending the new run.", - default="alpha-validators", + default="prompting-validators", ) parser.add_argument( "--wandb.entity", type=str, help="The name of the project where you are sending the new run.", - default="opentensor-dev", + default="macrocosmos", ) parser.add_argument(