The SuperPrompter node is a ComfyUI node that uses the SuperPrompt-v1 model from Hugging Face to generate text based on a given prompt. It provides various parameters to control the text generation process.
-
Make sure you have ComfyUI installed. If not, follow the installation instructions from the ComfyUI documentation.
-
Create a directory named
superprompter
inside the ComfyUI nodes directory. -
Place the
__init__.py
andsuperprompter_node.py
files inside thesuperprompter
directory. -
Install the required dependencies by running the following command:
pip install -r requirements.txt
-
Launch ComfyUI.
-
In the ComfyUI interface, you should see a new node called "SuperPrompter" under the "text" category.
-
Add the SuperPrompter node to your workflow.
-
Configure the input parameters:
- prompt: The prompt or starting text for generating the text.
- max_new_tokens: The maximum number of new tokens to generate.
- repetition_penalty: The penalty for repeating tokens in the generated text.
-
Connect the SuperPrompter node to other nodes in your workflow as needed.
-
Execute the workflow to generate text based on the provided prompt and parameters.
The SuperPrompter node uses the SuperPrompt-v1 model from Hugging Face. The model files will be automatically downloaded and saved in the ~/.models
directory when the node is first used.
This node is released under the MIT License.
The SuperPrompter node is based on the SuperPrompt-v1 model and concept by roborovski on Hugging Face:
- Original Source: https://brianfitzgerald.xyz/prompt-augmentation/
- Model: roborovski/superprompt-v1