// Cache each pushed snapshot; notify only when the serving set changes.
store.add(connection.onDidChangeModels(models => {
if (this._entries.get(clientId) !== entry) {
return;
}
if (entry.models === undefined || !modelsEqual(entry.models, models)) {
byokLmBridgeRegistry.ts
entry.models = models;
this._notifyChanged();
}
}));