Move `models` environment into package namespace and don't load them during package load. This is simpler than what we are doing now. * [x] In `R/models.R` : `models <- new.env()` * In `load_models()` * [x] Drop code that creates the environment. * [x] Update conditional for loading models to only check if the models are in the environment. * [x] Delete `.on_load()` * [x] Add text to readme to explain that models should be explicitly loaded by calling `load_models()` while configuring the API.