feat: reset availabilityService on /auth (#14911)

This commit is contained in:
Adam Weidman
2025-12-10 13:53:12 -08:00
committed by GitHub
parent 91b15fc9dc
commit 8c83e1ea9a
3 changed files with 35 additions and 0 deletions

View File

@@ -123,6 +123,10 @@ export class ModelAvailabilityService {
}
}
reset() {
this.health.clear();
}
private setState(model: ModelId, nextState: HealthState) {
this.health.set(model, nextState);
}