The Nebula Update
A major infrastructure and content expansion focusing on semantic graph connectivity, real-time translation accuracy, and the introduction of Aevum-Core v4.2.
-
New
Semantic Graph v3 Visualization
Enhanced 3D visualization engine for knowledge graphs. Users can now zoom into dense clusters, filter by confidence score, and export sub-graphs as PNG or SVG.
-
New
Real-Time Collaborative Annotation
Verified contributors can now annotate articles simultaneously. Changes are streamed via WebSocket and reconciled automatically using CRDTs.
-
New
Neural Translation for 3 New Languages
Added support for Yoruba, Quechua, and Georgian using the new Aevum-NMT engine. Includes back-translation verification.
-
Improve
Search Latency Reduction
Re-indexed the primary search vector store. P99 latency dropped from 140ms to 85ms globally. Relevance scoring updated for technical queries.
-
Improve
Mobile Reader Performance
Implemented virtualized scrolling for long articles. Reduced bundle size by 40% on iOS and Android webviews.
-
Fix
Citation Linking Errors in Mathematics
Resolved an issue where LaTeX-heavy articles generated broken citation anchors. Fixed parser logic for nested equations.
-
Fix
API Rate Limit Bypass
Patched a race condition in the rate limiter that allowed burst requests to exceed quotas under high concurrency. Added stricter enforcement.
The /v1/graphql endpoint is deprecated and will be removed in v3.0.0. Please migrate to /v2/graphql by Dec 31, 2025. Schema changes are backward compatible.
Schema Updates
New fields added to the Article type for enhanced metadata retrieval.
type Article { id: ID! # Global unique identifier title: String! # Article title content: Content! # Rich text body # NEW in v2.4.1 graphRank: Float! # Centrality score in knowledge graph confidence: Float! # AI verification confidence (0.0-1.0) locales: [Locale!]! # Available language variants related: [Article!]! # Top 10 semantic neighbors }
Rate Limits
| Tier | Requests / min | Burst |
|---|---|---|
| Free | d style="padding: 0.75rem; font-family: var(--mono);">60100 | |
| Pro | 1,000 | 2,000 |
| Enterprise | Custom | Custom |
Download full dataset dumps, static exports, or model weights for this version. All files are signed and verifiable.
GPG Key: Available at keys.openpgp.org?search=0xAevumRoot
The search() function now returns results sorted by relevance_score instead of created_date. Default sort parameter removed. Explicit sort must be provided for legacy behavior.
Migration Guide: v2.4.0 → v2.4.1
Most applications will work without changes. However, if you rely on date-based sorting or specific GraphQL fields, review the following.
# BEFORE (v2.4.0) curl -X POST https://api.aevum.com/v1/search \\ -H "Authorization: Bearer $TOKEN" \\ -d '{"query": "quantum", "sort": "date"}' # AFTER (v2.4.1) curl -X POST https://api.aevum.com/v1/search \\ -H "Authorization: Bearer $TOKEN" \\ -d '{"query": "quantum", "sort": {"field": "date", "order": "desc"}}'