this function should return the title of the script. This is what will be displayed in the dropdown menu.
(self)
| 97 | """A list of controls returned by the ui().""" |
| 98 | |
| 99 | def title(self): |
| 100 | """this function should return the title of the script. This is what will be displayed in the dropdown menu.""" |
| 101 | |
| 102 | raise NotImplementedError() |
| 103 | |
| 104 | def ui(self, is_img2img): |
| 105 | """this function should create gradio UI elements. See https://gradio.app/docs/#components |
no outgoing calls
no test coverage detected