Overview
Knowledge represents confirmed facts stored in your project. Each Knowledge entry is a structured, up-to-date piece of information that Neuradex prioritizes when answering questions. For why structured memory matters over simple chunk search, see the concept overview.Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier |
title | string | Knowledge title |
content | string | Full content body |
tags | string[] | Classification tags |
summary | string | Auto-generated summary |
connectedKnowledge | ConnectedKnowledgeItem[] | Related knowledge via linking |
createdAt | string | Creation timestamp |
updatedAt | string | Last update timestamp |
Knowledge Linking
Knowledge is automatically linked to other Knowledge entries. No manual work is required — Neuradex detects and creates relationships between Knowledge entries as they are added or updated.Relation Types
Each link between two Knowledge entries carries a relation type that describes how they are connected.| Relation | Meaning | Example |
|---|---|---|
references | References another entry | ”Terms of Service” references “Privacy Policy” |
extends | Extends or supplements | ”Detailed Rules” extends “Basic Rules” |
contradicts | Contains conflicting information | ”Old Spec” contradicts “Exception Rules” |
supersedes | Replaces a previous entry | ”v2 Spec” supersedes “v1 Spec” |
related | Generally related | Conceptual connections between entries |
derived_from | Derived from another entry | Split knowledge derived from original knowledge |
Contradiction Detection
When Knowledge entries with conflicting information are detected, acontradicts edge is automatically created between them. This enables automatic conflict alerts, helping you maintain information consistency across your project without manual review.
Change Tracking
When Knowledge is updated, asupersedes edge links the new version to the old one. This preserves the full history of changes, allowing you to trace how information has evolved over time.
Search Priority
For factual questions, Knowledge is referenced with the highest priority over other data types (Episodes, Topics, SourceContent). This ensures that confirmed, up-to-date information is returned first, while historical context and source documents remain available when needed.Related Pages
Data Types
Concept overview of all data types
Knowledge API
Manage knowledge with the SDK

