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.
A dropdown control for selecting from a list of options.
Select(choices=[], placeholder="")
from mirmod.controls import Select @wob.receiver("value", "input", control=Select(placeholder="Choose an option", choices=["a", "b", "c"])) def receive_input(self, i): self.selected = i