diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bda93c..3e9b8a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,12 +11,19 @@ Keep it human-readable, your future self will thank you! ## [Unreleased] ### Added -- added downstream-ci, reathedocs update check and label public pr workflows ### Changed ### Removed +## [0.1.10] Fix missing constants + +### Added +- (GH) Added downstream-ci, reathedocs update check and label public pr workflows + +### Changed +- Fix missing constant_fields property to query constants in the checkpoint + ## [0.1.9] Patch, Move output finalise to ai-models ### Removed @@ -67,6 +74,7 @@ Keep it human-readable, your future self will thank you! Initial Implementation of anemoi-inference ## Git Diffs: +[0.1.10]: https://github.com/ecmwf/anemoi-inference/compare/0.1.9...0.1.10 [0.1.9]: https://github.com/ecmwf/anemoi-inference/compare/0.1.8...0.1.9 [0.1.8]: https://github.com/ecmwf/anemoi-inference/compare/0.1.7...0.1.8 [0.1.7]: https://github.com/ecmwf/anemoi-inference/compare/0.1.6...0.1.7 diff --git a/src/anemoi/inference/plugin.py b/src/anemoi/inference/plugin.py index a1e5f62..569ccc3 100644 --- a/src/anemoi/inference/plugin.py +++ b/src/anemoi/inference/plugin.py @@ -90,6 +90,10 @@ def param_level_pl(self): def param_level_ml(self): return self.runner.checkpoint.param_level_ml + @property + def constant_fields(self): + return self.runner.checkpoint.constants_from_input + @property def grid(self): return self.runner.checkpoint.grid