Skip to content

Commit

Permalink
Fixed bug with auto-on versus auto-off data sharing
Browse files Browse the repository at this point in the history
  • Loading branch information
Xpitfire committed Nov 25, 2023
1 parent a576fc1 commit 0e58a90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
```

Expand Down
6 changes: 3 additions & 3 deletions symai/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 0e58a90

Please sign in to comment.