Probe broader long-scene action windows

This commit is contained in:
Melbar
2026-05-02 18:25:16 +02:00
parent a5a84a9145
commit 2d9ba91a7b
2 changed files with 9 additions and 1 deletions
+5 -1
View File
@@ -363,7 +363,11 @@ def _add_window_seed_descriptions(
if budget[0] <= 0:
return points
scenes_to_probe = ranked[: max(1, cfg.vision.max_seed_scenes)]
probe_limit = max(
cfg.vision.max_seed_scenes * 4,
cfg.vision.scene_candidate_top_k // 2,
)
scenes_to_probe = ranked[: max(1, min(len(ranked), probe_limit))]
windows_per_scene = max(1, min(6, cfg.vision.seed_points_per_scene // 2))
for _, scene, _ in scenes_to_probe:
if budget[0] <= 0: