Question
A RocketRide filter node that wraps incoming text as a Question object without modification.
What it does
Takes raw text from the text lane, strips surrounding whitespace, and encapsulates it as a Question object on the questions lane. The content is not generated, rewritten, or altered in any way; the node exists solely to translate unstructured text into the typed question entity that downstream nodes (vector stores, LLMs, agents, and the Prompt node) expect.
If the text is empty or whitespace-only after stripping, the node calls preventDefault and skips processing. The pipeline continues to the next node without emitting a question.
The implementation is pure Python with no external dependencies (requirements.txt is empty).
Configuration
Lanes
| Lane in | Lane out | Description |
|---|---|---|
text | questions | Wrap text as a Question and pass it downstream |
None. The node has no configurable fields and ships a single empty default profile.
Schema
No configuration fields.