@aevum/nlp-pipeline
v2.4.1

Advanced entity resolution, semantic parsing, and multi-document coherence analysis for academic texts.

Natural Language Entity Extraction Python
@aevum/knowledge-graph
v3.0.0-beta

Real-time relational mapping, graph traversal, and dynamic ontology construction for cross-disciplinary research.

Graph DB Relationships Rust
@aevum/multilingual
v1.8.3

140+ language tokenization, cross-lingual alignment, and translation-aware semantic indexing.

i18n Tokenization C++
@aevum/verification
v2.1.0

Source tracing, citation validation, trust scoring, and automated fact-checking pipelines.

Trust Citations Python
@aevum/vector-search
v4.0.0-exp

High-dimensional semantic retrieval, dense clustering, and similarity ranking for unstructured knowledge.

Embeddings ANN Rust
@aevum/export-suite
v1.2.0

Batch data extraction to PDF, Markdown, XML, CSV, and REST API endpoints with customizable schemas.

Export Serialization Node.js

Quick Start

# Install via npm (Node.js/TypeScript)
npm install @aevum/nlp-pipeline @aevum/verification

# Or via pip (Python)
pip install aevum-nlp aevum-verify
// Configuration example (config.json)
{
  "extensions": {
    "nlp-pipeline": {
      "enabled": true,
      "model": "aevum-semantic-v3",
      "workers": 4
    },
    "verification": {
      "enabled": true,
      "strict_mode": true,
      "citation_threshold": 0.85
    }
  }
}

Extensions auto-register with the core runtime. Restart your local daemon or call aevum reload to apply changes.

Aevum Core
NLP Pipeline
Knowledge Graph
Verification
Export Suite

Plugin-First Design

Aevum's core extensions operate as isolated, event-driven modules. They communicate via a unified IPC bus, ensuring zero-downtime updates and safe sandboxed execution.

  • Stateless request/response lifecycle
  • Hot-reloadable without service interruption
  • Typed RPC interfaces & OpenAPI schemas
  • Resource-aware throttling & backpressure