mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-03-22 14:20:39 -07:00
* M10: ProcessingRunner skeleton - Add modules/runtime/runner.py with ProcessingRunner and ProcessingRequest - Wire process_images to delegate through runner (internal only) - Add test/quality/test_processing_runner.py contract test Behavior-preserving. Zero blast radius. All callers unchanged. Made-with: Cursor * M10: Add run1 and toolcalls update Made-with: Cursor * M10: Update Phase III roadmap, add closeout prompt - Phase III: M11 lifecycle, M12 instrumentation, M13 txt2img, M14 API, M15 queue - Phase IV-VII renumbered (M16-M33) - Add M10_closeout_prompt.md for Cursor Made-with: Cursor
22 lines
606 B
Python
22 lines
606 B
Python
"""ProcessingRunner — unified execution entrypoint for Serena pipeline.
|
|
|
|
M10: Thin adapter around process_images_inner. No behavior changes.
|
|
"""
|
|
|
|
|
|
class ProcessingRequest:
|
|
"""Wraps StableDiffusionProcessing for runner boundary."""
|
|
|
|
def __init__(self, processing):
|
|
self.processing = processing
|
|
|
|
|
|
class ProcessingRunner:
|
|
"""
|
|
Unified execution entrypoint for Serena processing pipeline.
|
|
"""
|
|
|
|
def run(self, request):
|
|
"""Execute processing pipeline."""
|
|
from modules.processing import process_images_inner
|
|
return process_images_inner(request.processing)
|