Add separate style pool config

This commit is contained in:
2026-06-28 00:24:40 +02:00
parent 4c8edc0d3e
commit 78e39734b5
18 changed files with 378 additions and 27 deletions
+2
View File
@@ -20,6 +20,7 @@ class PromptFromConfigsRequest:
hardcore_position_config: str | dict[str, Any] | None = ""
location_config: str | dict[str, Any] | None = ""
composition_config: str | dict[str, Any] | None = ""
style_config: str | dict[str, Any] | None = ""
extra_positive: str = ""
extra_negative: str = ""
@@ -82,6 +83,7 @@ def build_prompt_from_configs_result(
"hardcore_position_config": request.hardcore_position_config or "",
"location_config": request.location_config or "",
"composition_config": request.composition_config or "",
"style_config": request.style_config or "",
}
return PromptFromConfigsRoute(
row=deps.build_prompt(**build_kwargs),