You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -399,6 +399,12 @@ For more information, or help for implementing your ideas (or ones from a paper)
399
399
400
400
Beware that every additional metric/module/optimizer should be approved by the core team, we want to keep the library minimal and clean as possible to avoid an uncontrolled growth leading to bad software practices like in most current leading LM frameworks.
401
401
402
+
If you have specific feedbacks or features request we invite you to open an [issue](https://github.com/SynaLinks/synalinks/issues).
403
+
404
+
### Telemetry
405
+
406
+
We collect usage and software performance information to enhance and catch errors as fast as possible in order to make the best experience for you. No private, personal or confidential information is recorded. To get the complete list of what we collect, and how to disable it, please read the following [document](TELEMETRY.md).
407
+
402
408
### Community
403
409
404
410
Join our community to learn more about neuro-symbolic systems and the future of AI. We welcome the participation of people from very different backgrounds or education levels.
In order to enhance Synalinks and provide you with the best software possible we collect usage information with [Sentry](https://sentry.io/welcome/).
4
+
5
+
Here is the list of what we collect, and the reason behind:
6
+
7
+
-*Modules exceptions*: To solve errors before they can go into production
8
+
-*Language & embedding models exceptions*: The monitor integrations stability
9
+
-*Knowledge bases exceptions*: To monitor integrations stability
10
+
-*Uncatched exceptions*: To enhance your experience by providing you with better error messages
11
+
12
+
You can disable the telemetry by setting the following evironment variable `export SYNALINKS_TELEMETRY=false` in your `~/.bashrc` (or equivalent).
13
+
14
+
OR you can use `synalinks.disable_telemetry()` at the beginning of your scripts
15
+
16
+
```python
17
+
import synalinks
18
+
19
+
synalinks.disable_telemetry()
20
+
```
21
+
22
+
**Note**: We might collect more information in the future, but we will **NEVER** collect private, personal or confidential (like your prompts/data models) informations.
23
+
24
+
If you have specific feedbacks or feature request we invite you to open an [issue](https://github.com/SynaLinks/synalinks/issues).
0 commit comments