MCPcopy Index your code
hub / github.com/AUTOMATIC1111/stable-diffusion-webui / process

Method process

modules/scripts.py:828–834  ·  view source on GitHub ↗
(self, p)

Source from the content-addressed store, hash-verified

826 errors.report(f"Error running before_process: {script.filename}", exc_info=True)
827
828 def process(self, p):
829 for script in self.ordered_scripts('process'):
830 try:
831 script_args = p.script_args[script.args_from:script.args_to]
832 script.process(p, *script_args)
833 except Exception:
834 errors.report(f"Error running process: {script.filename}", exc_info=True)
835
836 def process_before_every_sampling(self, p, **kwargs):
837 for script in self.ordered_scripts('process_before_every_sampling'):

Callers

nothing calls this directly

Calls 2

ordered_scriptsMethod · 0.95
processMethod · 0.45

Tested by

no test coverage detected