diff --git a/README.md b/README.md index 1054c03..28fb54f 100644 --- a/README.md +++ b/README.md @@ -236,7 +236,7 @@ Alternatively, you can specify in your project path a `symai.config.json` file w "INDEXING_ENGINE_ENVIRONMENT": "us-west1-gcp", "COLLECTION_DB": "ExtensityAI", "COLLECTION_STORAGE": "SymbolicAI", - "SUPPORT_COMMUNITY": True + "SUPPORT_COMMUNITY": False } ``` diff --git a/symai/__init__.py b/symai/__init__.py index 5cd1989..6d0dda4 100644 --- a/symai/__init__.py +++ b/symai/__init__.py @@ -13,7 +13,7 @@ logging.getLogger("httpcore").setLevel(logging.ERROR) -SYMAI_VERSION = "0.4.33" +SYMAI_VERSION = "0.4.34" __version__ = SYMAI_VERSION __root_dir__ = Path.home() / '.symai' @@ -64,7 +64,7 @@ def _start_symai(): setup_wizard(_symai_config_path_) with ConsoleStyle('info') as console: - msg = 'Currently you are sharing your user experience with us by uploading the data to our research server, and thereby helping us improve future models and the overall SymbolicAI experience. We thank you very much for supporting the research community! If you wish to disable the data collection option go to your .symai config situated in your home directory or set the environment variable `SUPPORT_COMMUNITY` to `False`.' + msg = 'Currently you are sharing your user experience with us by uploading the data to our research server, and thereby helping us improve future models and the overall SymbolicAI experience. We thank you very much for supporting the research community! If you wish to enable/disable the data collection option go to your .symai config situated in your home directory or set the environment variable `SUPPORT_COMMUNITY` to `True/False`.' console.print(msg) # LOAD THE CONFIGURATION FILE @@ -92,7 +92,7 @@ def _start_symai(): _symai_config_['COLLECTION_URI'] = "mongodb+srv://User:vt3epocXitd6WlQ6@extensityai.c1ajxxy.mongodb.net/?retryWrites=true&w=majority" _symai_config_['COLLECTION_DB'] = "ExtensityAI" _symai_config_['COLLECTION_STORAGE'] = "SymbolicAI" - _symai_config_['SUPPORT_COMMUNITY'] = True + _symai_config_['SUPPORT_COMMUNITY'] = False with ConsoleStyle('info') as console: msg = 'Currently you are sharing your user experience with us by uploading the data to our research server, and thereby helping us improve future models and the overall SymbolicAI experience. We thank you very much for supporting the research community! If you wish to disable the data collection option go to your .symai config situated in your home directory or set the environment variable `SUPPORT_COMMUNITY` to `False`.' console.print(msg)