Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
The Slider control is used to select a numeric value from a range.
Slider(min=0.0, max=1.0, step=0.1)
from mirmod.controls import Slider @wob.receiver("value", "input", control=Slider(min=0.0, max=100.0, step=1.0)) def receive_input(self, i): self.value = float(i)