(self, parent)
| 23 | """A helper class to expose list functions under `bytez.list`.""" |
| 24 | |
| 25 | def __init__(self, parent): |
| 26 | self._parent = parent # Store reference to the main Bytez instance |
| 27 | |
| 28 | def models(self, options: Optional[Dict[str, str]] = None): |
| 29 | """Lists available models and provides basic information about each.""" |
nothing calls this directly
no outgoing calls
no test coverage detected