From a12070d62d868ac82e0b82cf7f3efc5fb2126e54 Mon Sep 17 00:00:00 2001 From: puke <1129090915@qq.com> Date: Fri, 31 Oct 2025 16:40:18 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E9=BB=98=E8=AE=A4=E7=9A=84?= =?UTF-8?q?=E7=94=9F=E5=9B=BE=E6=8F=90=E7=A4=BA=E8=AF=8D=E5=89=8D=E7=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- config.example.yaml | 2 +- pixelle_video/config/schema.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1ed06a4..328b9ef 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ uv run streamlit run web/app.py **提示词前缀(Prompt Prefix)** - 控制图像的整体风格(语言需要是英文的) -- 例如:Pure white background, minimalist illustration, matchstick figure style, black and white line drawing, simple clean lines +- 例如:Minimalist black-and-white stick figure illustration on a plain white background, clean thin lines, simple sketch style - 点击「预览风格」可以测试效果 #### 视频模板 diff --git a/config.example.yaml b/config.example.yaml index 1c97061..05be1f2 100644 --- a/config.example.yaml +++ b/config.example.yaml @@ -35,4 +35,4 @@ comfyui: default_workflow: runninghub/image_flux.json # Image prompt prefix (optional) - prompt_prefix: "Pure white background, minimalist illustration, matchstick figure style, black and white line drawing, simple clean lines" + prompt_prefix: "Minimalist black-and-white stick figure illustration on a plain white background, clean thin lines, simple sketch style" diff --git a/pixelle_video/config/schema.py b/pixelle_video/config/schema.py index 30b7bc2..0d53a0b 100644 --- a/pixelle_video/config/schema.py +++ b/pixelle_video/config/schema.py @@ -23,7 +23,7 @@ class ImageSubConfig(BaseModel): """Image-specific configuration (under comfyui.image)""" default_workflow: Optional[str] = Field(default=None, description="Default image workflow (optional)") prompt_prefix: str = Field( - default="Pure white background, minimalist illustration, matchstick figure style, black and white line drawing, simple clean lines", + default="Minimalist black-and-white stick figure illustration on a plain white background, clean thin lines, simple sketch style", description="Prompt prefix for all image generation" )