LinkBERT scores each word via a dedicated local microservice, outputting a zero-to-one likelihood for every token span so the interface can perform instantaneous client-side confidence thresholding.

flowchart LR
    A[Flat Webpage Text] --> B[LinkBERT Service]
    B --> C[Token Probability Array<br/>0.0 to 1.0]
    C --> D[Client-Side UI<br/>Threshold Slider]
    D --> E[Highlighted Anchor Spans]