From aff70807c687b36ea1d487eddc8a3e8e7a935ac1 Mon Sep 17 00:00:00 2001 From: Dev Khant Date: Tue, 1 Apr 2025 00:40:50 +0530 Subject: [PATCH] update faqs (#2477) --- docs/faqs.mdx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/faqs.mdx b/docs/faqs.mdx index ef0fa64a..0ed30d0d 100644 --- a/docs/faqs.mdx +++ b/docs/faqs.mdx @@ -125,6 +125,23 @@ iconType: "solid" This flexibility allows you to create highly contextually aware AI applications that can adapt to specific user needs and situations. Metadata provides an additional dimension for memory retrieval, enabling more precise and relevant responses. + + To disable telemetry in Mem0, you can set the `MEM0_TELEMETRY` environment variable to `False`: + + ```bash + MEM0_TELEMETRY=False + ``` + + You can also disable telemetry programmatically in your code: + + ```python + import os + os.environ["MEM0_TELEMETRY"] = "False" + ``` + + Setting this environment variable will prevent Mem0 from collecting and sending any usage data, ensuring complete privacy for your application. + +