Extract location config policy

This commit is contained in:
2026-06-27 00:12:21 +02:00
parent 6abcccbae1
commit fef2bf6d81
6 changed files with 716 additions and 8 deletions
+10 -6
View File
@@ -7,29 +7,33 @@ try:
from .prompt_builder import (
build_cast_config_json,
build_category_config_json,
cast_preset_choices,
category_preset_choices,
subcategory_choices,
)
from .location_config import (
build_composition_pool_json,
build_location_pool_json,
build_thematic_location_json,
cast_preset_choices,
category_preset_choices,
composition_pool_preset_choices,
location_pool_preset_choices,
location_theme_choices,
subcategory_choices,
)
except ImportError: # Allows local smoke tests from the repository root.
from prompt_builder import (
build_cast_config_json,
build_category_config_json,
cast_preset_choices,
category_preset_choices,
subcategory_choices,
)
from location_config import (
build_composition_pool_json,
build_location_pool_json,
build_thematic_location_json,
cast_preset_choices,
category_preset_choices,
composition_pool_preset_choices,
location_pool_preset_choices,
location_theme_choices,
subcategory_choices,
)