Nous.KnowledgeBase.Entry (nous v0.16.3)
View SourceA compiled wiki entry — the core unit of the knowledge base.
Entries are produced by LLM compilation of raw Documents. They contain
structured markdown with [[wiki-links]], summaries, extracted concepts,
and metadata for search and graph traversal.
Summary
Types
@type entry_type() :: :article | :concept | :summary | :index | :glossary
@type t() :: %Nous.KnowledgeBase.Entry{ concepts: [String.t()], confidence: float(), content: String.t(), created_at: DateTime.t(), embedding: [float()] | nil, entry_type: entry_type(), id: String.t(), kb_id: String.t() | nil, last_verified_at: DateTime.t() | nil, metadata: map(), slug: String.t(), source_doc_ids: [String.t()], summary: String.t() | nil, tags: [String.t()], title: String.t(), updated_at: DateTime.t() }