summaryrefslogtreecommitdiff
path: root/wallpaper.py
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2026-08-09 20:31:33 +0100
committertslil <tslil@posteo.de>2026-08-09 20:31:57 +0100
commit8a1350dd8364001b93279846b96bab2b3f8dea00 (patch)
tree81182240b29dd2486f0c83cee51cca78cfef68c5 /wallpaper.py
parenta9cd1d0d4e6a55c7fa70b77c586379da0b35cb39 (diff)
wallpaper.py: sligthly lower fraction of taste, try to avoid running out of thinking tokens
Diffstat (limited to 'wallpaper.py')
-rwxr-xr-xwallpaper.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/wallpaper.py b/wallpaper.py
index a1a1e17..1f96132 100755
--- a/wallpaper.py
+++ b/wallpaper.py
@@ -405,7 +405,7 @@ def parse_args() -> argparse.Namespace:
wall.add_argument(
"--taste-sample-frac",
type=positive_fraction,
- default=0.8,
+ default=0.7,
help=(
"Fraction of taste keywords randomly sampled per run; lower "
"values give more varied, less cluttered prompts."
@@ -484,7 +484,7 @@ def parse_args() -> argparse.Namespace:
llm.add_argument(
"--llm-max-tokens",
type=positive_int,
- default=1024,
+ default=4096,
help="Maximum number of prompt tokens to generate.",
)
llm.add_argument(
@@ -590,7 +590,7 @@ def parse_args() -> argparse.Namespace:
sd_cli.add_argument(
"--sd-upscale-tile-size",
type=positive_int,
- default=256,
+ default=1024,
help="Tile size passed to --upscale-tile-size.",
)
sd_cli.add_argument(