Extract character profile policy

This commit is contained in:
2026-06-27 01:07:23 +02:00
parent 6a3f88ef59
commit 2165e9fc16
6 changed files with 635 additions and 326 deletions
+10 -6
View File
@@ -18,18 +18,20 @@ try:
character_presence_choices,
character_woman_body_choices,
)
from .prompt_builder import (
from .character_profile import (
build_character_manual_config_json,
character_profile_choices,
load_character_profile_json,
)
from .prompt_builder import (
build_character_profile_json,
build_character_slot_json,
character_ethnicity_choices,
character_figure_choices,
character_hardcore_clothing_state_choices,
character_hardcore_clothing_values,
character_profile_choices,
character_softcore_outfit_source_choices,
character_softcore_outfit_values,
load_character_profile_json,
)
except ImportError: # Allows local smoke tests from the repository root.
from character_config import (
@@ -47,18 +49,20 @@ except ImportError: # Allows local smoke tests from the repository root.
character_presence_choices,
character_woman_body_choices,
)
from prompt_builder import (
from character_profile import (
build_character_manual_config_json,
character_profile_choices,
load_character_profile_json,
)
from prompt_builder import (
build_character_profile_json,
build_character_slot_json,
character_ethnicity_choices,
character_figure_choices,
character_hardcore_clothing_state_choices,
character_hardcore_clothing_values,
character_profile_choices,
character_softcore_outfit_source_choices,
character_softcore_outfit_values,
load_character_profile_json,
)