From f19bb89ff9a56c539520424e009290e6b9ee8ea5 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Fri, 9 Feb 2024 18:11:01 -0800 Subject: [PATCH] feat: disable tracking from unstructured --- Dockerfile | 3 +++ example.env | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d292716b..6687a67f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,6 +27,9 @@ ENV OPENAI_API_KEY "" ENV WEBUI_SECRET_KEY "" +ENV SCARF_NO_ANALYTICS true +ENV DO_NOT_TRACK true + WORKDIR /app/backend # install python dependencies diff --git a/example.env b/example.env index 74d52223..4a4fdaa6 100644 --- a/example.env +++ b/example.env @@ -3,4 +3,8 @@ OLLAMA_API_BASE_URL='http://localhost:11434/api' OPENAI_API_BASE_URL='' -OPENAI_API_KEY='' \ No newline at end of file +OPENAI_API_KEY='' + +# DO NOT TRACK +SCARF_NO_ANALYTICS=true +DO_NOT_TRACK=true \ No newline at end of file