Python: Disable mem0 telemetry by default (#3506)

* disable mem0 telemetry by default

* test fix

* addressed comments
This commit is contained in:
Giles Odigwe
2026-01-30 21:17:52 +00:00
committed by GitHub
parent 8b475afe17
commit f3e0be9555
4 changed files with 67 additions and 1 deletions
+11
View File
@@ -18,3 +18,14 @@ See the [Mem0 basic example](https://github.com/microsoft/agent-framework/tree/m
- Teaching the agent user preferences
- Retrieving information using remembered context across new threads
- Persistent memory
## Telemetry
Mem0's telemetry is **disabled by default** when using this package. If you want to enable telemetry, set the environment variable before importing:
```python
import os
os.environ["MEM0_TELEMETRY"] = "true"
from agent_framework.mem0 import Mem0Provider
```