H3 Continuum Result
Unpack the H3 Continuum run result without poking into internals
- result
- last_state
- session
- report
H3 Continuum Result is the little utility that takes the opaque H3_CONTINUUM_RESULT object produced by the V3-family samplers (H3 Continuum Sampler V3, and via compatibility the older compact H3 Continuum Sampler) and turns it into things you can actually wire up. If you've ever had a sampler spit out a purple result socket and wondered what to do with it, this node is the answer.
One input, three outputs. Feed it the result and you get:
last_state(H3_CONTINUUM_STATE) - the final continuation state, ready to feed a Save State node or to chain into another run as aninitial_stateso the next generation continues where this one left off.session(H3_CONTINUUM_SESSION) - the run's session handle, if the sampler produced one, for Save Session / Load Session / Session Info.report(STRING) - the human-readable run report; connect it to Core Preview as Text to see what actually happened (chunks reused vs generated, conditioning mode, resume status).
That's the whole node. It's a pass-through for bookkeeping, not a processing step - no settings to tune, nothing to get wrong. You add it when you need a last_state or session output that the sampler didn't expose directly, or when you want the report as a proper STRING for display.
Install
cd ComfyUI/custom_nodes
git clone https://github.com/ukr8b3g-cmyk/ComfyUI-H3-Continuum.git
or install "H3 Continuum" via ComfyUI Manager, then restart. No extra pip dependencies; you need a working MiniMax H3 ComfyUI environment for the samplers that feed it.
One practical note: the current H3 Continuum Sampler V3.3 doesn't emit result at all - it outputs video_latents, audio_latents, assembly_plan, and status directly, so you don't need this node on modern workflows. You'll mostly meet it inside older V2/V3 workflow files. If that's your situation, drop it in exactly where the old graph had it and don't overthink the wire colors: last_state continues a run, session persists chunks, report tells you what happened.
Inputs (1)
| Name | Type | Default | Description |
|---|---|---|---|
| result | H3_CONTINUUM_RESULT | — |
Outputs (3)
| Name | Type | Description |
|---|---|---|
| last_state | H3_CONTINUUM_STATE | — |
| session | H3_CONTINUUM_SESSION | — |
| report | STRING | — |