When token logprobs reveal alternative candidate tokens above a set probability threshold, Treewalker splices each alternative into the text prefix and sends targeted completion prompts to map divergent associative branches.

flowchart LR
    A["Token Path: Custom [cycling]"] --> B{"Logprobs Check"}
    B -->|"Selected (85%)"| C["Continue Path: cycling jerseys"]
    B -->|"Alt Token (14%)"| D["Branch Prefix: Custom [running]"]
    D --> E["Completion Query"]
    E --> F["Discovered Association: running apparel"]