Add character engine package init and config
This commit is contained in:
11
media-pipeline/core/character_engine/__init__.py
Normal file
11
media-pipeline/core/character_engine/__init__.py
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
from .schema.character import Character, Appearance, Outfit, Gender
|
||||||
|
from .generation.prompt_builder import PromptBuilder, PromptConfig
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
"Character",
|
||||||
|
"Appearance",
|
||||||
|
"Outfit",
|
||||||
|
"Gender",
|
||||||
|
"PromptBuilder",
|
||||||
|
"PromptConfig",
|
||||||
|
]
|
||||||
15
media-pipeline/core/character_engine/config.yaml
Normal file
15
media-pipeline/core/character_engine/config.yaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
engine:
|
||||||
|
default_model: ""
|
||||||
|
default_lora: ""
|
||||||
|
output_dir: "outputs"
|
||||||
|
|
||||||
|
generation:
|
||||||
|
width: 512
|
||||||
|
height: 768
|
||||||
|
steps: 30
|
||||||
|
cfg_scale: 7.5
|
||||||
|
seed: -1
|
||||||
|
|
||||||
|
prompt:
|
||||||
|
quality_prefix: "masterpiece, best quality, highly detailed"
|
||||||
|
negative: "lowres, bad anatomy, bad hands, text, error, missing fingers, cropped, worst quality, low quality, blurry, deformed"
|
||||||
Reference in New Issue
Block a user