DEJAN evaluates source fact fidelity by running veracity assessments that calculate fidelity scores to measure which page facts survived, were lost, or became distorted in AI-generated answers.

flowchart LR
    subgraph Input
        A[Source Webpage]
    end

    subgraph Processing
        B[AI Answer Generation]
    end

    subgraph Fact_Paths [Fact Categorization]
        C[Survived Facts]
        D[Lost Facts]
        E[Distorted Facts]
    end

    subgraph Evaluation
        F[Veracity Assessment]
        G[Fidelity Score Calculation]
    end

    A --> B
    B --> C
    B --> D
    B --> E

    C --> F
    D --> F
    E --> F
    F --> G