summaryrefslogtreecommitdiff
path: root/wallpaper.py
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-08-07 21:40:05 +0100
committertslil <tslil@posteo.de>2026-08-07 21:41:02 +0100
commita9cd1d0d4e6a55c7fa70b77c586379da0b35cb39 (patch)
tree673b175b79e835f716ec8d0448712440e85ac618 /wallpaper.py
parent22cb65c84c2d4484dc46a9aed631cea4a311ba80 (diff)
wallpaper.py: fix some prompts, add biome
Diffstat (limited to 'wallpaper.py')
-rwxr-xr-xwallpaper.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/wallpaper.py b/wallpaper.py
index 22295ab..a1a1e17 100755
--- a/wallpaper.py
+++ b/wallpaper.py
@@ -393,9 +393,10 @@ def parse_args() -> argparse.Namespace:
"freestanding gates and arched portals",
"open plazas and courtyards",
"abstract concrete sculptures",
+ "towering highly stylised humanoid statues",
"precise water channels and reflecting pools",
"clean geometric forms at impossible scale",
- "distinct scales of objects, some very large for contrast",
+ "distinct scales of objects with some very large for contrast",
"serene, deserted, contemplative",
"completely out of place architecture",
],
@@ -421,7 +422,9 @@ def parse_args() -> argparse.Namespace:
"wetland: still black water and reed beds, half-submerged ground, mirror-flat reflections, low mist layer",
"volcanic wastes: black basalt plains, drifting ash, cooled lava flows, faint orange fissures, columnar basalt cliffs, no water",
"tropical highlands: lush jungle terraces, waterfalls down cliff faces, climbing vines, humid haze, broad-leafed plants",
- "megastructure interior: vast enclosed halls, endless repeating bays, shafts of light from distant openings, no vegetation",
+ "megastructure interior: vast enclosed halls, endless repeating bays, shafts of light from distant openings, carefully isolated vegetation, nested cube architecture, copper inlays in intricate patterns",
+ "spring fields: copses of trees, meadows and fields of grass, rolling hills",
+ "mountain region: snowcapped peaks, tree-lines, rocks, huge mountains and canyons, plants giving way to moss giving way to barren rocks",
],
help=(
"Biome descriptions; one is chosen at random per run and "
@@ -527,7 +530,7 @@ def parse_args() -> argparse.Namespace:
sd_cli.add_argument(
"--sd-diffusion-model",
type=Path,
- default=Path("~/store/weights/flux-2-klein-9b-Q4_0.gguf"),
+ default=Path("~/store/weights/flux-2-klein-4b-Q8_0.gguf"),
help="Diffusion model passed to --diffusion-model.",
)
sd_cli.add_argument(
@@ -539,7 +542,7 @@ def parse_args() -> argparse.Namespace:
sd_cli.add_argument(
"--sd-llm",
type=Path,
- default=Path("~/store/weights/Qwen3-8B-Q4_K_M.gguf"),
+ default=Path("~/store/weights/Qwen3-4B-Q8_0.gguf"),
help="Text encoder or LLM passed to --llm.",
)
sd_cli.add_argument(