"""Model that returns purely random actions."""fromalgorithms.modelimportModel
[docs]classRandomModel(Model):""" Model that returns purely random actions. The actions are based on the :py:attr:`~smartgrid.environment.SmartGrid.action_space` for each agent, using the :py:meth:`Space.sample() <gymnasium.spaces.space.Space.sample>` method. """