Skip to content

Commit bf69bcb

Browse files
authored
chore: Fix typo in telemetry
1 parent bb8a1db commit bf69bcb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ docs/.docusaurus
162162
node_modules
163163
.deepeval
164164
.deepeval-cache.json
165-
.deepeval_telemtry.txt
165+
.deepeval_telemetry.txt
166166
.vector_db
167167
*/cache
168168

deepeval/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import warnings
33
import re
44

5-
# Optionally add telemtry
5+
# Optionally add telemetry
66
from ._version import __version__
77

88
from deepeval.event import track

deepeval/telemetry.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Feature(Enum):
2020
UNKNOWN = "unknown"
2121

2222

23-
TELEMETRY_DATA_FILE = ".deepeval_telemtry.txt"
23+
TELEMETRY_DATA_FILE = ".deepeval_telemetry.txt"
2424

2525
#########################################################
2626
### Telemetry Config ####################################

docs/docs/data-privacy.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ If at any point you think you might have acceidentally sent us sensitive data, *
1212

1313
## Your Privacy Using DeepEval
1414

15-
By default, `deepeval` uses `Sentry` to track only very basic telemetry data (number of evaluations run and which metric is used). Personally identifiable information is explicitly excluded. We also provide the option of opting out of the telemtry data collection through an environment variable:
15+
By default, `deepeval` uses `Sentry` to track only very basic telemetry data (number of evaluations run and which metric is used). Personally identifiable information is explicitly excluded. We also provide the option of opting out of the telemetry data collection through an environment variable:
1616

1717
```console
1818
export DEEPEVAL_TELEMETRY_OPT_OUT="YES"

0 commit comments

Comments
 (0)