DOCS · KNOWLEDGE

Knowledge

Knowledge bases inject domain documents, FAQs, policies, and product data into selected routes before model dispatch.

Push documents

PUT/kb/{kb_id}/docs/{source_key}
{
  "title": "Refund Policy",
  "content": "Refund rules and examples...",
  "metadata": { "source": "policy-center" }
}

List status

GET/kb/{kb_id}/docs
{ "items": [{ "source_key": "refund-policy", "status": "ready", "chunk_count": 8 }] }

Route usage

Select a knowledge base on a route. Retrieval failures should degrade gracefully and should not block the main job unless your business explicitly requires strict knowledge availability.