Danbot Text Input
A plain multiline text box that outputs a string — nothing more
- STRING
Danbot Text Input is the pack's answer to a ComfyUI quirk: you can't just type into most sockets, and nodes that expect string inputs often want a wire, not a widget. This node gives you a big multiline box, whatever you type passes through untouched as a STRING output, ready to be wired anywhere. Description in the source literally says "just pass the given text to the next nodes without any transformation." No transformation means no surprise formatting - no trimming, no re-joining, no cleverness.
In this pack it's the input side of the prompt chain. The V2408 Pipeline and Generator need a text_prompt, and while those nodes have their own text widgets, the pack's own workflows route the sentence through this node instead - because wiring a dedicated text box keeps the prompt visually separate from the model plumbing, and lets you feed the same string to multiple consumers. In the README's example you'll see it feeding both the pipeline and, alongside a "quality tags" text node, the Concat String joiner.
The input
One field: text, multiline-enabled. Drop your Japanese or English sentence here - the model's two supported languages, same as everywhere else in the pack. Everything you type, including line breaks, comes out verbatim on the single STRING output.
A couple of honest notes:
- It's a passthrough with no defaults and no preprocessing. If you paste a sentence with leading/trailing whitespace, that whitespace rides along into the model. Probably harmless, but it's the one place this "no transformation" promise can bite.
- It's not the only game in town - you can use ComfyUI's core text primitives instead. What this node adds is consistency: it lives in the same menu as the rest of the pack, so a workflow that only depends on danbot-comfy-node (plus core) stays clean.
- It is not an output node. If you want to see the value on the canvas, chain it into Danbot Print String.
Install
The whole pack installs the same way. ComfyUI Manager → danbot-comfy-node, or:
cd ComfyUI/custom_nodes
git clone https://github.com/p1atdev/danbot-comfy-node
cd danbot-comfy-node
pip install -r requirements.txt
(portable: ../../../python_embeded/python.exe -s -m pip install -r requirements.txt.) Restart ComfyUI; it's under prompt/Danbooru Tags Translator/utils.
Inputs (1)
| Name | Type | Default | Description |
|---|---|---|---|
| textopt | STRING | — |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| STRING | STRING | — |