Probe broader long-scene action windows
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user