Models now track the total number of predictions created across all their versions via the predictions_count field.
What it shows
The count reflects every prediction ever created against a model, regardless of which version was used. It's available on model responses from the API and visible on the model detail page.
1{2 "name": "stable-diffusion-xl-base-1.0",3 "predictions_count": 4821,4 ...5}
The count is eventually consistent — there may be a slight delay between a prediction being created and the count updating.