Extract generation profile config policy

This commit is contained in:
2026-06-27 00:27:57 +02:00
parent 4c31553409
commit 65574222b2
6 changed files with 238 additions and 125 deletions
+9 -5
View File
@@ -3,18 +3,22 @@ from __future__ import annotations
import json
try:
from .prompt_builder 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 (
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,
build_generation_profile_json,
generation_profile_choices,
)