The shape of it
Turn it on
Deployment → Reflow tab.
Buffer bytes count against the owner’s storage quota. The quota wins over
retention: if you go over, the oldest buffer files are reclaimed early and the
loss is counted. A full shared disk stops training for everyone on the cluster.
What is never captured
Request headers of any kind, so anAuthorization header cannot arrive by
accident; the deployment token itself (only its id, which is the tenant boundary
inside one deployment); and anything but chat completions.
Redaction
Masking runs before anything reaches disk — redaction that runs afterwards is not redaction, it is filtering. The default pack covers emails, phone numbers (mainland China and E.164), US SSNs, PRC resident ids, payment-card-shaped digits and key-shaped strings. It is versioned, and the version is stamped on every record so you can tell later which rules cleaned what. It errs toward masking too much. A long hex string in a code sample gets masked as a possible key; that costs a slightly worse training example, and the opposite error puts a credential in a corpus.Mine the hard cases
The useful half of a buffer is small, and it is not the average request. Mining picks out what is worth another training pass:
Mining replaces the previous candidate set; it is a working suggestion, not a
ledger.
Promote
Select candidates, name a destination dataset, and promote. Three checks, all fail-closed:- Visibility. A deployment is readable by its owner and by administrators, so the only non-escalating destination is that owner’s own private dataset — including a pre-existing one. Promoting into a public dataset publishes your users’ traffic to every account on the platform; an administrator can do it, and the audit record says so.
- Contamination. Name the evaluation datasets to check against, or say explicitly that you are skipping the check. The choice is recorded on the version, because nobody checked and checked and clean must not look alike later. Production traffic overlapping an eval set is the normal case — that set was probably built from the same distribution.
- Not empty. A version that exists, is referenceable, and teaches nothing is worse than no version.
The contamination estimate uses 13-gram fingerprints sampled at 1/64. A small
promotion of short prompts produces too few n-grams for the estimate to mean
anything, and is reported inconclusive rather than as a pass.