[docs]classStateful(BaseConfigurable,Generic[TSettings]):""" A base class for stateful objects that are related to a settings class. Usually, it's used for live status of settings-defined objects, that may vary over time. It allows to separate the concerns of the imuatable, environment-provided settings, and the mutable, runtime-related state of the object. """settings:Annotated[TSettings,Field(repr=False)]