Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tumban.com/llms.txt

Use this file to discover all available pages before exploring further.

evidence_index is an array of structured entries representing the URLs and external context the triage report cites. Use it to render reviewer-facing panels without parsing the free-text reason_summary.

Entry shape

Every entry has:
url
string
required
The cited URL.
type
string
required
One of traversed_link, external_mention, direct_link, or unknown.
ref
string
When the contextual model cited the entry by reference (link_3, external_mention_2, …), this field correlates the entry to that reasoning trace.
Type-specific fields:

Example

"evidence_index": [
  {
    "ref": "link_2",
    "url": "https://prohibited-platform.example/username",
    "type": "traversed_link",
    "domain": "prohibited-platform.example"
  },
  {
    "ref": "external_mention_1",
    "url": "https://forum.example/posts/12345",
    "type": "external_mention",
    "platform_type": "adult",
    "risk_level": "HIGH"
  },
  {
    "url": "https://aggregator.example/username",
    "type": "direct_link",
    "domain": "aggregator.example",
    "category": "link_aggregator"
  }
]

Empty array

evidence_index can be [] — for example, when only the deterministic strategies fired, or when the contextual model hit an infrastructure error. Treat an empty array as “no contextual evidence to surface”, not as a feature failure.