Zed Model Improvement
Zed Assistant
When using the Zed Assistant, Zed does not persistently store user content or use user content for training of its models.
When using upstream services through Zed AI, we require similar assurances from our service providers. For example, usage of Anthropic Claude 3.5 via Zed AI in the Asssistant is governed by the Anthropic Commercial Terms which includes the following:
"Anthropic may not train models on Customer Content from paid Services."
When you directly connect the Zed Assistant with a non Zed AI service (e.g. via API key) Zed does not have access to your user content. Users should reference their agreement with the service provider to understand what terms and conditions apply.
Zed Edit Predictions
By default, when using Zed Edit Predictions, Zed does not persistently store user content or use user content for training of its models.
Opt-in
Users who are working on open source licensed projects may optionally opt-in to providing model improvement feedback. This opt-in occurs on a per-project basis. If you work on multiple open source projects and wish to provide model improvement feedback you will have to opt-in for each individual project.
When working on other projects where you haven't opted-in, Zed will not persistently store user content or use user content for training of its models.
You can see exactly how Zed detects open source licenses in: license_detection.rs.
Exclusions
Zed will intentionally exclude certain files from Predictive Edits entirely, even when you have opted-in to model improvement feedback.
You can inspect this exclusion list by opening zed: open default settings
from the command palette:
{
"edit_predictions": {
// A list of globs representing files that edit predictions should be disabled for.
// There's a sensible default list of globs already included.
// Any addition to this list will be merged with the default list.
"disabled_globs": [
"**/.env*",
"**/*.pem",
"**/*.key",
"**/*.cert",
"**/*.crt",
"**/secrets.yml"
]
}
}
Users may explicitly exclude additional paths and/or file extensions by adding them to edit_predictions.disabled_globs
in their Zed settings.json:
{
"edit_predictions": {
"disabled_globs": ["secret_dir/*", "**/*.log"]
}
}
Data we collect
For open source projects where you have opted-in, Zed may store copies of requests and responses to the Zed AI Prediction service.
This data includes:
- the edit prediction
- a portion of the buffer content around the cursor
- a few recent edits
- the current buffer outline
- diagnostics (errors, warnings, etc) from language servers
Data Handling
Collected data is stored in Snowflake, a private database where we track other metrics. We periodically review this data to select training samples for inclusion in our model training dataset. We ensure any included data is anonymized and contains no sensitive information (access tokens, user IDs, email addresses, etc). This training dataset is publicly available at: huggingface.co/datasets/zed-industries/zeta.
Model Output
We then use this training dataset to fine-tune Qwen2.5-Coder-7B and make the resulting model available at huggingface.co/zed-industries/zeta.
Applicable terms
Please see the Zed Terms of Service for more.