this function should return the title of the script. This is what will be displayed in the dropdown menu.
(self)
| 66 | return f'Script: name="{self.name}" filename="{self.filename}" external={self.external} parent="{self.parent}" args_from={self.args_from} args_to={self.args_to} alwayson={self.alwayson} is_txt2img={self.is_txt2img} is_img2img={self.is_img2img}' |
| 67 | |
| 68 | def title(self): |
| 69 | """this function should return the title of the script. This is what will be displayed in the dropdown menu.""" |
| 70 | raise NotImplementedError |
| 71 | |
| 72 | def ui(self, is_img2img) -> list[IOComponent]: |
| 73 | """this function should create gradio UI elements. See https://gradio.app/docs/#components |
no outgoing calls
no test coverage detected