Extract filter config policy

This commit is contained in:
2026-06-27 00:35:06 +02:00
parent 65574222b2
commit 5675536009
6 changed files with 369 additions and 200 deletions
+6 -6
View File
@@ -3,23 +3,23 @@ from __future__ import annotations
import json
try:
from .filter_config import (
build_ethnicity_list_json,
build_filter_config_json,
)
from .generation_profile_config import (
build_generation_profile_json,
generation_profile_choices,
)
from .prompt_builder import (
except ImportError: # Allows local smoke tests from the repository root.
from filter_config import (
build_ethnicity_list_json,
build_filter_config_json,
)
except ImportError: # Allows local smoke tests from the repository root.
from generation_profile_config import (
build_generation_profile_json,
generation_profile_choices,
)
from prompt_builder import (
build_ethnicity_list_json,
build_filter_config_json,
)
SXCP_GENERATION_PROFILE = "SXCP_GENERATION_PROFILE"