Treewalker configures a probability threshold to inspect top alternative tokens, generating tree-walked completions for any alternate token meeting that cut-off to discover unprompted sub-associations.

flowchart LR
    A[Initial Token Generation] --> B{Alt Token Prob >= Threshold?}
    B -- Yes --> C[Form Branch Prefix]
    B -- No --> D[Discard Candidate]
    C --> E[Prompt LLM with Prefix]
    E --> F[Save Completed Association]