(ctx context.Context, auth *coreauth.Auth)
| 717 | } |
| 718 | |
| 719 | func (s *Service) completeModelRegistrationForAuth(ctx context.Context, auth *coreauth.Auth) { |
| 720 | s.completeModelRegistrationForAuthWithCache(ctx, auth, nil) |
| 721 | } |
| 722 | |
| 723 | func (s *Service) completeModelRegistrationForAuthWithCache(ctx context.Context, auth *coreauth.Auth, compatCache *openAICompatibilityRegistrationCache) { |
| 724 | if s == nil || s.coreManager == nil || auth == nil || auth.ID == "" { |
no test coverage detected