You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,6 +117,37 @@ data-designer config list # View current settings
117
117
118
118
---
119
119
120
+
## Telemetry
121
+
122
+
Data Designer collects telemetry to help us improve the library for developers. We collect:
123
+
124
+
* The names of models used
125
+
* The count of input tokens
126
+
* The count of output tokens
127
+
128
+
**No user or device information is collected.** This data is not used to track any individual user behavior. It is used to see an aggregation of which models are the most popular for SDG. We will share this usage data with the community.
129
+
130
+
Specifically, a model name that is defined a `ModelConfig` object, is what will be collected. In the below example config:
131
+
132
+
```python
133
+
ModelConfig(
134
+
alias="nv-reasoning",
135
+
model="openai/gpt-oss-20b",
136
+
provider="nvidia",
137
+
inference_parameters=InferenceParameters(
138
+
temperature=0.3,
139
+
top_p=0.9,
140
+
max_tokens=4096,
141
+
),
142
+
)
143
+
```
144
+
145
+
The value `openai/gpt-oss-20b` would be collected.
146
+
147
+
To disable telemetry capture, set `NEMO_TELEMETRY_ENABLED=false`.
148
+
149
+
---
150
+
120
151
## License
121
152
122
153
Apache License 2.0 – see [LICENSE](LICENSE) for details.
0 commit comments