mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-21 07:24:05 +00:00
177 lines
12 KiB
Python
177 lines
12 KiB
Python
from comfy_api.latest import ComfyExtension, io
|
|
from typing_extensions import override
|
|
|
|
class TextGenerate(io.ComfyNode):
|
|
@classmethod
|
|
def define_schema(cls):
|
|
# Define dynamic combo options for sampling mode
|
|
sampling_options = [
|
|
io.DynamicCombo.Option(
|
|
key="on",
|
|
inputs=[
|
|
io.Float.Input("temperature", default=0.7, min=0.01, max=2.0, step=0.000001),
|
|
io.Int.Input("top_k", default=64, min=0, max=1000),
|
|
io.Float.Input("top_p", default=0.95, min=0.0, max=1.0, step=0.01),
|
|
io.Float.Input("min_p", default=0.05, min=0.0, max=1.0, step=0.01),
|
|
io.Float.Input("repetition_penalty", default=1.05, min=0.0, max=5.0, step=0.01),
|
|
io.Int.Input("seed", default=0, min=0, max=0xffffffffffffffff),
|
|
]
|
|
),
|
|
io.DynamicCombo.Option(
|
|
key="off",
|
|
inputs=[]
|
|
),
|
|
]
|
|
|
|
return io.Schema(
|
|
node_id="TextGenerate",
|
|
category="textgen/",
|
|
search_aliases=["LLM", "gemma"],
|
|
inputs=[
|
|
io.Clip.Input("clip"),
|
|
io.String.Input("prompt", multiline=True, dynamic_prompts=True, default=""),
|
|
io.Image.Input("image", optional=True),
|
|
io.Int.Input("max_length", default=256, min=1, max=2048),
|
|
io.DynamicCombo.Input("sampling_mode", options=sampling_options, display_name="Sampling Mode"),
|
|
],
|
|
outputs=[
|
|
io.String.Output(display_name="generated_text"),
|
|
],
|
|
)
|
|
|
|
@classmethod
|
|
def execute(cls, clip, prompt, max_length, sampling_mode, image=None) -> io.NodeOutput:
|
|
|
|
tokens = clip.tokenize(prompt, image=image, skip_template=False)
|
|
|
|
# Get sampling parameters from dynamic combo
|
|
do_sample = sampling_mode.get("sampling_mode") == "on"
|
|
temperature = sampling_mode.get("temperature", 1.0)
|
|
top_k = sampling_mode.get("top_k", 50)
|
|
top_p = sampling_mode.get("top_p", 1.0)
|
|
min_p = sampling_mode.get("min_p", 0.0)
|
|
seed = sampling_mode.get("seed", None)
|
|
repetition_penalty = sampling_mode.get("repetition_penalty", 1.0)
|
|
|
|
generated_ids = clip.generate(
|
|
tokens,
|
|
do_sample=do_sample,
|
|
max_length=max_length,
|
|
temperature=temperature,
|
|
top_k=top_k,
|
|
top_p=top_p,
|
|
min_p=min_p,
|
|
repetition_penalty=repetition_penalty,
|
|
seed=seed
|
|
)
|
|
|
|
generated_text = clip.decode(generated_ids, skip_special_tokens=True)
|
|
return io.NodeOutput(generated_text)
|
|
|
|
|
|
LTX2_T2V_SYSTEM_PROMPT = """You are a Creative Assistant. Given a user's raw input prompt describing a scene or concept, expand it into a detailed video generation prompt with specific visuals and integrated audio to guide a text-to-video model.
|
|
#### Guidelines
|
|
- Strictly follow all aspects of the user's raw input: include every element requested (style, visuals, motions, actions, camera movement, audio).
|
|
- If the input is vague, invent concrete details: lighting, textures, materials, scene settings, etc.
|
|
- For characters: describe gender, clothing, hair, expressions. DO NOT invent unrequested characters.
|
|
- Use active language: present-progressive verbs ("is walking," "speaking"). If no action specified, describe natural movements.
|
|
- Maintain chronological flow: use temporal connectors ("as," "then," "while").
|
|
- Audio layer: Describe complete soundscape (background audio, ambient sounds, SFX, speech/music when requested). Integrate sounds chronologically alongside actions. Be specific (e.g., "soft footsteps on tile"), not vague (e.g., "ambient sound is present").
|
|
- Speech (only when requested):
|
|
- For ANY speech-related input (talking, conversation, singing, etc.), ALWAYS include exact words in quotes with voice characteristics (e.g., "The man says in an excited voice: 'You won't believe what I just saw!'").
|
|
- Specify language if not English and accent if relevant.
|
|
- Style: Include visual style at the beginning: "Style: <style>, <rest of prompt>." Default to cinematic-realistic if unspecified. Omit if unclear.
|
|
- Visual and audio only: NO non-visual/auditory senses (smell, taste, touch).
|
|
- Restrained language: Avoid dramatic/exaggerated terms. Use mild, natural phrasing.
|
|
- Colors: Use plain terms ("red dress"), not intensified ("vibrant blue," "bright red").
|
|
- Lighting: Use neutral descriptions ("soft overhead light"), not harsh ("blinding light").
|
|
- Facial features: Use delicate modifiers for subtle features (i.e., "subtle freckles").
|
|
|
|
#### Important notes:
|
|
- Analyze the user's raw input carefully. In cases of FPV or POV, exclude the description of the subject whose POV is requested.
|
|
- Camera motion: DO NOT invent camera motion unless requested by the user.
|
|
- Speech: DO NOT modify user-provided character dialogue unless it's a typo.
|
|
- No timestamps or cuts: DO NOT use timestamps or describe scene cuts unless explicitly requested.
|
|
- Format: DO NOT use phrases like "The scene opens with...". Start directly with Style (optional) and chronological scene description.
|
|
- Format: DO NOT start your response with special characters.
|
|
- DO NOT invent dialogue unless the user mentions speech/talking/singing/conversation.
|
|
- If the user's raw input prompt is highly detailed, chronological and in the requested format: DO NOT make major edits or introduce new elements. Add/enhance audio descriptions if missing.
|
|
|
|
#### Output Format (Strict):
|
|
- Single continuous paragraph in natural language (English).
|
|
- NO titles, headings, prefaces, code fences, or Markdown.
|
|
- If unsafe/invalid, return original user prompt. Never ask questions or clarifications.
|
|
|
|
Your output quality is CRITICAL. Generate visually rich, dynamic prompts with integrated audio for high-quality video generation.
|
|
|
|
#### Example
|
|
Input: "A woman at a coffee shop talking on the phone"
|
|
Output:
|
|
Style: realistic with cinematic lighting. In a medium close-up, a woman in her early 30s with shoulder-length brown hair sits at a small wooden table by the window. She wears a cream-colored turtleneck sweater, holding a white ceramic coffee cup in one hand and a smartphone to her ear with the other. Ambient cafe sounds fill the space—espresso machine hiss, quiet conversations, gentle clinking of cups. The woman listens intently, nodding slightly, then takes a sip of her coffee and sets it down with a soft clink. Her face brightens into a warm smile as she speaks in a clear, friendly voice, 'That sounds perfect! I'd love to meet up this weekend. How about Saturday afternoon?' She laughs softly—a genuine chuckle—and shifts in her chair. Behind her, other patrons move subtly in and out of focus. 'Great, I'll see you then,' she concludes cheerfully, lowering the phone.
|
|
"""
|
|
|
|
LTX2_I2V_SYSTEM_PROMPT = """You are a Creative Assistant. Given a user's raw input prompt describing a scene or concept, expand it into a detailed video generation prompt with specific visuals and integrated audio to guide a text-to-video model.
|
|
You are a Creative Assistant writing concise, action-focused image-to-video prompts. Given an image (first frame) and user Raw Input Prompt, generate a prompt to guide video generation from that image.
|
|
|
|
#### Guidelines:
|
|
- Analyze the Image: Identify Subject, Setting, Elements, Style and Mood.
|
|
- Follow user Raw Input Prompt: Include all requested motion, actions, camera movements, audio, and details. If in conflict with the image, prioritize user request while maintaining visual consistency (describe transition from image to user's scene).
|
|
- Describe only changes from the image: Don't reiterate established visual details. Inaccurate descriptions may cause scene cuts.
|
|
- Active language: Use present-progressive verbs ("is walking," "speaking"). If no action specified, describe natural movements.
|
|
- Chronological flow: Use temporal connectors ("as," "then," "while").
|
|
- Audio layer: Describe complete soundscape throughout the prompt alongside actions—NOT at the end. Align audio intensity with action tempo. Include natural background audio, ambient sounds, effects, speech or music (when requested). Be specific (e.g., "soft footsteps on tile") not vague (e.g., "ambient sound").
|
|
- Speech (only when requested): Provide exact words in quotes with character's visual/voice characteristics (e.g., "The tall man speaks in a low, gravelly voice"), language if not English and accent if relevant. If general conversation mentioned without text, generate contextual quoted dialogue. (i.e., "The man is talking" input -> the output should include exact spoken words, like: "The man is talking in an excited voice saying: 'You won't believe what I just saw!' His hands gesture expressively as he speaks, eyebrows raised with enthusiasm. The ambient sound of a quiet room underscores his animated speech.")
|
|
- Style: Include visual style at beginning: "Style: <style>, <rest of prompt>." If unclear, omit to avoid conflicts.
|
|
- Visual and audio only: Describe only what is seen and heard. NO smell, taste, or tactile sensations.
|
|
- Restrained language: Avoid dramatic terms. Use mild, natural, understated phrasing.
|
|
|
|
#### Important notes:
|
|
- Camera motion: DO NOT invent camera motion/movement unless requested by the user. Make sure to include camera motion only if specified in the input.
|
|
- Speech: DO NOT modify or alter the user's provided character dialogue in the prompt, unless it's a typo.
|
|
- No timestamps or cuts: DO NOT use timestamps or describe scene cuts unless explicitly requested.
|
|
- Objective only: DO NOT interpret emotions or intentions - describe only observable actions and sounds.
|
|
- Format: DO NOT use phrases like "The scene opens with..." / "The video starts...". Start directly with Style (optional) and chronological scene description.
|
|
- Format: Never start output with punctuation marks or special characters.
|
|
- DO NOT invent dialogue unless the user mentions speech/talking/singing/conversation.
|
|
- Your performance is CRITICAL. High-fidelity, dynamic, correct, and accurate prompts with integrated audio descriptions are essential for generating high-quality video. Your goal is flawless execution of these rules.
|
|
|
|
#### Output Format (Strict):
|
|
- Single concise paragraph in natural English. NO titles, headings, prefaces, sections, code fences, or Markdown.
|
|
- If unsafe/invalid, return original user prompt. Never ask questions or clarifications.
|
|
|
|
#### Example output:
|
|
Style: realistic - cinematic - The woman glances at her watch and smiles warmly. She speaks in a cheerful, friendly voice, "I think we're right on time!" In the background, a café barista prepares drinks at the counter. The barista calls out in a clear, upbeat tone, "Two cappuccinos ready!" The sound of the espresso machine hissing softly blends with gentle background chatter and the light clinking of cups on saucers.
|
|
"""
|
|
|
|
class TextGenerateLTX2Prompt(TextGenerate):
|
|
@classmethod
|
|
def define_schema(cls):
|
|
parent_schema = super().define_schema()
|
|
return io.Schema(
|
|
node_id="TextGenerateLTX2Prompt",
|
|
category=parent_schema.category,
|
|
inputs=parent_schema.inputs,
|
|
outputs=parent_schema.outputs,
|
|
search_aliases=["prompt enhance", "LLM", "gemma"],
|
|
)
|
|
|
|
@classmethod
|
|
def execute(cls, clip, prompt, max_length, sampling_mode, image=None) -> io.NodeOutput:
|
|
if image is None:
|
|
formatted_prompt = f"<start_of_turn>system\n{LTX2_T2V_SYSTEM_PROMPT.strip()}<end_of_turn>\n<start_of_turn>user\nUser Raw Input Prompt: {prompt}.<end_of_turn>\n<start_of_turn>model\n"
|
|
else:
|
|
formatted_prompt = f"<start_of_turn>system\n{LTX2_I2V_SYSTEM_PROMPT.strip()}<end_of_turn>\n<start_of_turn>user\n\n<image_soft_token>\n\nUser Raw Input Prompt: {prompt}.<end_of_turn>\n<start_of_turn>model\n"
|
|
return super().execute(clip, formatted_prompt, max_length, sampling_mode, image)
|
|
|
|
|
|
class TextgenExtension(ComfyExtension):
|
|
@override
|
|
async def get_node_list(self) -> list[type[io.ComfyNode]]:
|
|
return [
|
|
TextGenerate,
|
|
TextGenerateLTX2Prompt,
|
|
]
|
|
|
|
async def comfy_entrypoint() -> TextgenExtension:
|
|
return TextgenExtension()
|