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. + +