SyntheticMDProductions's picture
Update ADAM safety, UI, and model workflows (#1)
c61c435
Raw
History Blame Contribute Delete
411 Bytes
from __future__ import annotations
from typing import Any
def generate(context, **settings: Any) -> dict[str, Any]:
"""Put your generation implementation here.
Return a dictionary with output paths or assets when generation is done.
"""
context.log("Template generator loaded. Replace this with real generation code.")
context.progress(100, "Template generation complete")
return {}