From afbacbb91cf52d006b4533b3eb7268fec61d83d8 Mon Sep 17 00:00:00 2001 From: CahidArda Date: Mon, 20 Oct 2025 15:13:08 +0300 Subject: [PATCH] Add telemetry information and opt-out option to README --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 761e54a..b2f499e 100644 --- a/README.md +++ b/README.md @@ -537,6 +537,21 @@ The default namespaces cannot be deleted. index.delete_namespace(namespace="ns") ``` +## Telemetry + +This library sends anonymous telemetry data to help us improve your experience. +We collect the following: + +- SDK version +- Platform (Vercel, AWS) +- Python Runtime version + +You can opt out by passing `allow_telemetry=False` when initializing the Redis client: + +```py +idx = Index("INDEX_URL", "INDEX_TOKEN", allow_telemetry=False) +``` + # Contributing ## Preparing the environment