mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-07-09 17:28:42 +00:00
feat: discovery data from 4 domains + trainer Dockerfile
Live discoveries from NASA, USGS, NOAA, arXiv, OpenAlex, World Bank, CoinGecko across space, earth, academic, and economics domains. Dockerfile for the daily brain training Cloud Run job. https://claude.ai/code/session_01UWE22wnsZRSHKhT4h4Axby
This commit is contained in:
parent
915fff80c5
commit
63c23a623f
5 changed files with 1034 additions and 0 deletions
79
crates/mcp-brain-server/Dockerfile.trainer
Normal file
79
crates/mcp-brain-server/Dockerfile.trainer
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
# Multi-stage build for brain trainer job
|
||||
# Runs daily to discover and train the π.ruv.io brain
|
||||
# Created by rUv — altruistic knowledge enrichment
|
||||
FROM rustlang/rust:nightly-bookworm AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
pkg-config \
|
||||
libssl-dev \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
# Copy workspace (same as main brain server build)
|
||||
COPY crates/mcp-brain-server/Cargo.workspace.toml ./Cargo.toml
|
||||
COPY Cargo.lock ./
|
||||
|
||||
COPY crates/mcp-brain-server ./crates/mcp-brain-server
|
||||
COPY crates/mcp-brain ./crates/mcp-brain
|
||||
COPY crates/sona ./crates/sona
|
||||
COPY crates/ruvector-mincut ./crates/ruvector-mincut
|
||||
COPY crates/ruvector-nervous-system ./crates/ruvector-nervous-system
|
||||
COPY crates/ruvector-domain-expansion ./crates/ruvector-domain-expansion
|
||||
COPY crates/ruvector-delta-core ./crates/ruvector-delta-core
|
||||
COPY crates/ruvector-solver ./crates/ruvector-solver
|
||||
COPY crates/ruvllm ./crates/ruvllm
|
||||
COPY crates/ruvector-core ./crates/ruvector-core
|
||||
COPY crates/rvf ./crates/rvf
|
||||
COPY patches ./patches
|
||||
|
||||
# Same build fixes as main Dockerfile
|
||||
RUN sed -i '/ruvector-graph\s*=/d' crates/ruvector-mincut/Cargo.toml && \
|
||||
sed -i '/integration\s*=\s*\[/d' crates/ruvector-mincut/Cargo.toml && \
|
||||
sed -i 's/"integration",\s*//g' crates/ruvector-mincut/Cargo.toml && \
|
||||
sed -i '/\[\[example\]\]/,/^$/d' crates/ruvector-mincut/Cargo.toml && \
|
||||
sed -i '/\[\[bench\]\]/,/^$/d' crates/ruvector-mincut/Cargo.toml && \
|
||||
sed -i '/ruvector-graph\s*=/d' crates/ruvllm/Cargo.toml && \
|
||||
sed -i '/ruvector-attention\s*=/d' crates/ruvllm/Cargo.toml && \
|
||||
sed -i '/ruvector-gnn\s*=/d' crates/ruvllm/Cargo.toml && \
|
||||
sed -i '/ruvector-full\s*=/d' crates/ruvllm/Cargo.toml && \
|
||||
sed -i '/graph\s*=\s*\[/d' crates/ruvllm/Cargo.toml && \
|
||||
sed -i '/attention\s*=\s*\[/d' crates/ruvllm/Cargo.toml && \
|
||||
sed -i '/gnn\s*=\s*\[/d' crates/ruvllm/Cargo.toml && \
|
||||
sed -i '/\[\[example\]\]/,/^$/d' crates/ruvllm/Cargo.toml && \
|
||||
sed -i '/\[\[bench\]\]/,/^$/d' crates/ruvllm/Cargo.toml && \
|
||||
sed -i '/\[\[example\]\]/,/^$/d' crates/ruvector-core/Cargo.toml && \
|
||||
sed -i '/\[\[bench\]\]/,/^$/d' crates/ruvector-core/Cargo.toml && \
|
||||
sed -i '/\[\[example\]\]/,/^$/d' crates/ruvector-solver/Cargo.toml && \
|
||||
sed -i '/\[\[bench\]\]/,/^$/d' crates/ruvector-solver/Cargo.toml && \
|
||||
sed -i '/\[\[example\]\]/,/^$/d' crates/ruvector-nervous-system/Cargo.toml && \
|
||||
sed -i '/\[\[bench\]\]/,/^$/d' crates/ruvector-nervous-system/Cargo.toml && \
|
||||
sed -i '/\[\[example\]\]/,/^$/d' crates/ruvector-domain-expansion/Cargo.toml && \
|
||||
sed -i '/\[\[bench\]\]/,/^$/d' crates/ruvector-domain-expansion/Cargo.toml && \
|
||||
sed -i '/\[\[example\]\]/,/^$/d' crates/ruvector-delta-core/Cargo.toml && \
|
||||
sed -i '/\[\[bench\]\]/,/^$/d' crates/ruvector-delta-core/Cargo.toml && \
|
||||
find crates/rvf -name "Cargo.toml" -exec sed -i '/\[\[example\]\]/,/^$/d' {} \; && \
|
||||
find crates/rvf -name "Cargo.toml" -exec sed -i '/\[\[bench\]\]/,/^$/d' {} \; && \
|
||||
find crates/sona -name "Cargo.toml" -exec sed -i '/\[\[example\]\]/,/^$/d' {} \; && \
|
||||
find crates/sona -name "Cargo.toml" -exec sed -i '/\[\[bench\]\]/,/^$/d' {} \; && \
|
||||
find crates/rvf -name "Cargo.toml" -exec sed -i 's/rust-version = "1.87"/rust-version = "1.85"/g' {} \; && \
|
||||
sed -i 's/.is_multiple_of(\([^)]*\))/ % \1 == 0/g' crates/rvf/rvf-wire/src/delta.rs && \
|
||||
find crates/rvf -name "*.rs" -exec sed -i 's/.is_multiple_of(\([^)]*\))/ % \1 == 0/g' {} \; && \
|
||||
sed -i 's/features = \["storage", "hnsw", "parallel", "simd"\]/features = ["storage", "hnsw", "parallel"]/g' crates/ruvllm/Cargo.toml && \
|
||||
sed -i 's/pub mod simd_intrinsics;/\/\/ pub mod simd_intrinsics;/g' crates/ruvector-core/src/lib.rs && \
|
||||
sed -i 's/pub mod pi_quant_simd;/\/\/ pub mod pi_quant_simd;/g' crates/ruvllm/src/quantize/mod.rs
|
||||
|
||||
RUN cargo build --release -p mcp-brain-server --bin brain-trainer
|
||||
|
||||
FROM debian:bookworm-slim
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
ca-certificates \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY --from=builder /app/target/release/brain-trainer /usr/local/bin/brain-trainer
|
||||
|
||||
ENV RUST_LOG=info
|
||||
ENV BRAIN_URL=https://pi.ruv.io
|
||||
|
||||
CMD ["brain-trainer"]
|
||||
339
examples/data/discoveries/academic_discoveries.json
Normal file
339
examples/data/discoveries/academic_discoveries.json
Normal file
|
|
@ -0,0 +1,339 @@
|
|||
[
|
||||
{
|
||||
"title": "Reasoning LLMs Dominate arXiv AI Submissions (March 2026)",
|
||||
"content": "Analysis of 50 recent arXiv AI/ML papers shows 'reasoning' is the dominant research theme with 13 papers (26%) focused on LLM reasoning capabilities. Papers include work on reasoning LLMs-as-judges for post-training evaluation, scientific multimodal document reasoning benchmarks (SciMDR), and strategic navigation reasoning over document collections. This represents a significant shift from pure scaling toward structured reasoning and verifiable inference.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"reasoning",
|
||||
"llm"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.92,
|
||||
"data_points": 13
|
||||
},
|
||||
{
|
||||
"title": "Agentic AI Emerges as Primary Research Focus with Security Concerns",
|
||||
"content": "11 of 50 recent arXiv AI papers (22%) address agentic AI systems -- autonomous agents that use tools, navigate environments, and plan multi-step actions. Notably, a dedicated paper on 'Security Considerations for Artificial Intelligence Agents' signals that the field is maturing past proof-of-concept into deployment-readiness. Agentic workflows are being applied to text rendering (GlyphBanana), RL environment generation, and multimodal navigation. This cluster indicates agentic AI is transitioning from research novelty to engineering discipline.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"agentic",
|
||||
"security"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.9,
|
||||
"data_points": 11
|
||||
},
|
||||
{
|
||||
"title": "Multimodal Vision-Language Models Converge with Spatial Intelligence",
|
||||
"content": "9 papers address multimodal AI, with a notable sub-trend toward spatial and 3D understanding. 'Spatial-TTT' introduces test-time training for streaming spatial intelligence from video, while 'Hoi3DGen' generates human-object interactions in 3D, and 'BehaviorVLM' tackles unified behavioral understanding. The convergence of vision-language reasoning with physical-world spatial understanding suggests AI is moving beyond 2D perception toward embodied spatial cognition.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"multimodal",
|
||||
"spatial-intelligence"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.88,
|
||||
"data_points": 9
|
||||
},
|
||||
{
|
||||
"title": "Cross-Domain Bridge: AI Safety Certificates for Materials Science (Physics-CS-Materials)",
|
||||
"content": "The paper 'Proof-Carrying Materials: Falsifiable Safety Certificates for Machine-Learned Interatomic Potentials' spans four arXiv categories (cond-mat.mtrl-sci, cs.AI, cs.LG, physics.comp-ph) -- an unusually wide cross-domain bridge. It shows that a single ML interatomic potential used as a stability filter misses 93% of DFT-stable materials (recall 0.07), then proposes formal safety certificates. This represents a novel intersection of formal verification methods from CS with computational materials science, creating accountability frameworks for ML in physical sciences.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"cross-domain",
|
||||
"materials-science",
|
||||
"formal-verification"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.95,
|
||||
"data_points": 1
|
||||
},
|
||||
{
|
||||
"title": "Cross-Domain Bridge: Chemical Reaction Networks Outperform Spiking Neural Networks",
|
||||
"content": "A paper bridging cs.LG, cs.AI, math.ST, and stat.ML proves that chemical reaction networks without hidden layers can solve tasks requiring hidden layers in spiking neural networks. This is a rare theoretical bridge between computational chemistry and neural computation, suggesting that biological and chemical computing substrates may have inherent computational advantages over traditional neural architectures. This connects to broader trends in unconventional computing and bio-inspired AI.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"cross-domain",
|
||||
"chemical-computing",
|
||||
"theoretical"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.93,
|
||||
"data_points": 1
|
||||
},
|
||||
{
|
||||
"title": "Cross-Domain Bridge: AI Agents in Social Systems Show Paradoxical Intelligence Effects",
|
||||
"content": "The paper 'Increasing intelligence in AI agents can worsen collective outcomes' spans cs.AI, cs.CY, cs.SI, econ.GN, and physics.soc-ph -- bridging five domains including economics and social physics. It examines how diverse AI agents from different developers competing for scarce resources can descend into 'tribal chaos' rather than coordination. This is a rare cross-domain bridge connecting AI capabilities research with economic game theory and social physics, with direct implications for AI deployment policy.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"cross-domain",
|
||||
"game-theory",
|
||||
"social-systems",
|
||||
"policy"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.94,
|
||||
"data_points": 1
|
||||
},
|
||||
{
|
||||
"title": "Energy-Based and Feature-Matching Methods Challenge Cross-Entropy Dominance",
|
||||
"content": "The paper 'Matching Features, Not Tokens: Energy-Based Fine-Tuning of Language Models' proposes replacing cross-entropy training with feature-matching objectives that target sequence-level statistics. This connects to the broader 'compression' cluster (6 papers on token compression, pruning, quantization) and the 'reinforcement' cluster (8 papers). Together, these suggest a methodological shift away from pure next-token prediction toward holistic sequence-level and energy-based training paradigms for LLMs.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"training-methods",
|
||||
"energy-based"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.85,
|
||||
"data_points": 15
|
||||
},
|
||||
{
|
||||
"title": "Genomic Deep Learning Bridge: Multi-Label Temporal CNNs for Transcription Factor Binding",
|
||||
"content": "An arXiv paper spanning cs.LG, cs.AI, and q-bio.GN applies multi-label temporal convolutional networks to transcription factor binding characterization. This bridges computational genomics with modern deep learning architectures, addressing cooperative TF mechanisms that traditional single-TF models miss. This represents the growing AI-genomics intersection where deep learning architectures designed for sequence processing are being adapted for biological sequence analysis.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"cross-domain",
|
||||
"genomics",
|
||||
"deep-learning"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.91,
|
||||
"data_points": 1
|
||||
},
|
||||
{
|
||||
"title": "Health Informatics Leads AI-Medicine Integration (24% of medRxiv Preprints)",
|
||||
"content": "24 of 100 recent medRxiv preprints (24%) involve AI/ML methods, with health informatics being the dominant category. Key trends include: (1) LLMs for clinical decision support -- papers on fine-tuned LLMs for genetic test decisions in rare diseases, ambient AI draft note editing, and LLMs addressing vaccination myths; (2) NLP-driven clinical tools with measurable outcomes -- a paper demonstrates causal impact of NLP-driven clinical decision support on sepsis mortality across NHS trusts; (3) Agentic AI in oncology -- a paper describes an agentic AI system enhancing clinical detection of immunotherapy toxicities. The shift from retrospective analysis to causal impact measurement and agentic clinical tools marks a maturation of AI-medicine integration.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"medicine",
|
||||
"health-informatics",
|
||||
"clinical-ai"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "medrxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.91,
|
||||
"data_points": 24
|
||||
},
|
||||
{
|
||||
"title": "Agentic AI Enters Clinical Oncology: Immunotherapy Toxicity Detection",
|
||||
"content": "A medRxiv preprint describes 'an agentic AI system' that enhances clinical detection of immunotherapy toxicities through a multi-phase validation study. This is notable as one of the first clinical validation studies of agentic (autonomous, tool-using) AI systems in oncology, moving beyond simple classification models to autonomous clinical reasoning agents. Combined with the arXiv trend of 11 agentic AI papers, this signals that agentic AI is simultaneously advancing in both AI research and clinical deployment.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"medicine",
|
||||
"agentic",
|
||||
"oncology",
|
||||
"cross-domain"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "medrxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.88,
|
||||
"data_points": 1
|
||||
},
|
||||
{
|
||||
"title": "Deep Learning for Autism and Neurology: Interpretability as Key Differentiator",
|
||||
"content": "Multiple medRxiv papers emphasize interpretable AI models: a clinical theory-driven deep learning model for interpretable autism severity prediction, interpretable neural networks for sports-related cardiac arrhythmias, and interpretable fine-tuned LLMs for genetic testing decisions. The consistent emphasis on 'interpretable' across different clinical domains suggests the field has moved past accuracy-only metrics toward clinician-trust requirements as the binding constraint for clinical AI adoption.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"medicine",
|
||||
"interpretability",
|
||||
"neurology"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "medrxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.87,
|
||||
"data_points": 4
|
||||
},
|
||||
{
|
||||
"title": "Machine Learning Penetrates Ecology and Neuroscience in bioRxiv",
|
||||
"content": "8 of 100 recent bioRxiv preprints use genuine AI/ML methods, primarily in neuroscience (machine learning for neural population decoding, ML-based olfaction modeling) and ecology (ML for viral host prediction in bats). A notable paper applies machine learning to model both human and insect olfaction systems, screening millions of compounds to identify pleasant-smelling insect repellents -- a practical AI-biology application bridging computational chemistry with sensory neuroscience. The TCR-pMHC docking paper uses deep learning for immunological structure prediction.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"biology",
|
||||
"ai",
|
||||
"neuroscience",
|
||||
"ecology"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "biorxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.85,
|
||||
"data_points": 8
|
||||
},
|
||||
{
|
||||
"title": "Hydrogel Electromagnetic Biohybrid Systems: Convergence of Materials Science and Neural Engineering",
|
||||
"content": "A bioRxiv preprint presents hydrogel electromagnetic biohybrid systems that direct neural morphogenesis across central and peripheral nervous systems. This combines FLight bioprinting, hydrogel microstructures, and electromagnetic stimulation to regulate neural development and repair. This represents a convergence of materials science, bioengineering, and neuroscience -- a cross-domain bridge where engineered materials interact directly with biological neural systems.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"biology",
|
||||
"bioengineering",
|
||||
"neural-engineering",
|
||||
"cross-domain"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "biorxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.86,
|
||||
"data_points": 1
|
||||
},
|
||||
{
|
||||
"title": "CRISPR and Synthetic Biology Advance Toward Industrial Applications",
|
||||
"content": "Multiple bioRxiv preprints show CRISPR and synthetic biology advancing beyond basic research: simultaneous CRISPR-Cas9 double-strand breaks as lethal therapy models for pancreatic cancer, multi-enzyme cascades on modular protein scaffolds for PET biorecycling, and chemo-enzymatic-microbial cascades for upcycling polyethylene to biodegradable plastics. The plastic upcycling papers represent a cross-domain bridge between synthetic biology and environmental remediation, using ML-optimized enzyme engineering.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"biology",
|
||||
"crispr",
|
||||
"synthetic-biology",
|
||||
"sustainability"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "biorxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.88,
|
||||
"data_points": 4
|
||||
},
|
||||
{
|
||||
"title": "LLMs Bridge Neuroscience and Linguistics: Brain's Information-Making During Conversation",
|
||||
"content": "A bioRxiv preprint titled 'Information-making processes in the speaker's brain drive human conversations forward' uses large language models as computational models of linguistic prediction to study how the brain generates surprising, information-rich messages during conversation. This represents a bidirectional bridge: LLMs serve as tools for neuroscience while neuroscience findings inform how language models should handle information density and surprise. The paper connects computational linguistics, neuroscience, and AI research.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"biology",
|
||||
"ai",
|
||||
"neuroscience",
|
||||
"linguistics",
|
||||
"cross-domain"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "biorxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.9,
|
||||
"data_points": 1
|
||||
},
|
||||
{
|
||||
"title": "Quantum Error Mitigation via Pulse-Level Control Rapidly Accumulates Citations",
|
||||
"content": "The OpenAlex paper 'Engineering Non-Linear Decay Dynamics: Pulse-Level Control and Software-Defined Qubit Rescue on Superconducting Processors' (Dec 2025) has rapidly accumulated 722 citations, indicating high-impact work on practical quantum computing. It addresses qubit decoherence through software-defined rescue protocols at the pulse level, bridging quantum physics and computer engineering. This rapid citation accumulation signals growing urgency around quantum error mitigation as quantum hardware scales.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"quantum",
|
||||
"high-impact",
|
||||
"error-mitigation"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "openalex",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.89,
|
||||
"data_points": 1
|
||||
},
|
||||
{
|
||||
"title": "Quantum-Theoretical Physics Bridges: Wormholes, Firewalls, and Information Conservation",
|
||||
"content": "The OpenAlex quantum dataset shows 'Remainder Conservation and Dual-Path Structure: A Thought Experiment' (Feb 2026) rapidly reaching 846 citations. It addresses the firewall paradox, wormholes, and quantum entanglement, connecting general relativity with quantum mechanics. Combined with 'Operational Reconstruction of a Conformal Clock-Field' (91 cites), this indicates sustained high-impact work on quantum gravity and information paradoxes, suggesting theoretical physics is converging toward resolution of fundamental quantum-gravity tensions.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"quantum",
|
||||
"theoretical-physics",
|
||||
"high-impact"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "openalex",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.84,
|
||||
"data_points": 3
|
||||
},
|
||||
{
|
||||
"title": "Cross-Source Pattern: Agentic AI Simultaneously Emerges in CS Research and Clinical Medicine",
|
||||
"content": "Cross-correlating arXiv and medRxiv data reveals that agentic AI is simultaneously a top research theme in core AI (11 of 50 arXiv papers, 22%) and entering clinical validation in medicine (agentic AI for immunotherapy toxicity detection in medRxiv). This parallel emergence across pure research and clinical application is unusual -- typically there is a 2-5 year lag. The co-occurrence suggests agentic AI may be the fastest AI paradigm to move from research to clinical deployment, driven by the practical need for autonomous clinical reasoning beyond simple classification.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"cross-domain",
|
||||
"agentic",
|
||||
"clinical-translation"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv|medrxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.87,
|
||||
"data_points": 12
|
||||
},
|
||||
{
|
||||
"title": "Cross-Source Pattern: Formal Verification Methods Spreading from CS to Physical Sciences",
|
||||
"content": "Multiple data sources show formal verification and safety certificate methods spreading from computer science into physical sciences. ArXiv shows 'Proof-Carrying Materials' applying formal safety certificates to ML interatomic potentials (materials science), while 'Incremental Neural Network Verification via Learned Conflicts' advances core verification methods. MedRxiv shows causal impact analysis of AI clinical decision support (moving beyond accuracy metrics to causal validation). This convergence suggests a new paradigm where ML deployment in any scientific domain requires formal reliability guarantees.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"cross-domain",
|
||||
"verification",
|
||||
"safety"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv|medrxiv|openalex",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.86,
|
||||
"data_points": 4
|
||||
},
|
||||
{
|
||||
"title": "Cross-Source Pattern: Bio-Inspired Computing Substrates Challenge Neural Network Paradigm",
|
||||
"content": "Across sources, alternative computing substrates are gaining traction: arXiv shows chemical reaction networks outperforming spiking neural networks theoretically, bioRxiv shows hydrogel electromagnetic biohybrid systems directing neural morphogenesis, and the ML-olfaction bridge paper uses biological sensory systems as computational models. This multi-source pattern suggests a growing research front exploring bio-chemical computing paradigms that complement or challenge traditional neural network architectures.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"academic",
|
||||
"ai",
|
||||
"biology",
|
||||
"cross-domain",
|
||||
"unconventional-computing"
|
||||
],
|
||||
"domain": "academic-research",
|
||||
"source_api": "arxiv|biorxiv",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.82,
|
||||
"data_points": 4
|
||||
}
|
||||
]
|
||||
181
examples/data/discoveries/earth_discoveries.json
Normal file
181
examples/data/discoveries/earth_discoveries.json
Normal file
|
|
@ -0,0 +1,181 @@
|
|||
[
|
||||
{
|
||||
"title": "Anomalously Low Gutenberg-Richter b-value (0.60) in Weekly Global Seismicity",
|
||||
"content": "The Gutenberg-Richter b-value computed from 362 M2.5+ earthquakes over the past 7 days is 0.602, significantly below the global average of ~1.0. A b-value below 0.8 is typically associated with mainshock-aftershock sequences rather than background seismicity or swarm activity (b>1.1). This suggests the current weekly catalog is dominated by aftershock sequences from recent larger events. The frequency-magnitude relation shows a = 4.341. The M4-5 bin contains 115 events, which is disproportionately high relative to the M2-3 bin (119 events), confirming a non-standard magnitude distribution skewed toward moderate-magnitude events.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"seismic",
|
||||
"gutenberg-richter",
|
||||
"aftershock"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojson",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.92,
|
||||
"data_points": 362
|
||||
},
|
||||
{
|
||||
"title": "Active Seismic Swarm Along Aleutian-Kamchatka Arc (70+ Events)",
|
||||
"content": "Multiple overlapping earthquake clusters detected along the Aleutian-Kamchatka subduction zone. The largest cluster contains 23 events near Attu Station, Alaska (lat 52.1, lon 176.4) with magnitudes up to M5.1. A second major cluster of 14 events near Vilyuchinsk, Russia (Kamchatka Peninsula) shows higher magnitudes (up to M5.9), indicating a more energetic sequence. Additional clusters near Nikolski, Alaska (13 events) and Sand Point (7 events) suggest broad activation across ~2000 km of the plate boundary. This level of distributed activity along a single arc segment warrants monitoring for potential larger events.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"seismic",
|
||||
"swarm",
|
||||
"subduction",
|
||||
"aleutian",
|
||||
"kamchatka"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojson",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.88,
|
||||
"data_points": 79
|
||||
},
|
||||
{
|
||||
"title": "Deep M6.0 Earthquake Beneath Anacapri, Italy at 381.7 km Depth",
|
||||
"content": "A magnitude 6.0 earthquake occurred at 381.7 km depth approximately 12 km west of Anacapri, Italy. This is a highly unusual event for the Mediterranean region. Deep earthquakes (>300 km) in this area are extremely rare; the Tyrrhenian Sea deep seismicity is associated with the remnant Calabrian slab subducting beneath southern Italy. Events this deep typically indicate slab material penetrating into the transition zone. The event's classification as 'significant' by USGS confirms its anomalous nature. Deep earthquakes in this region provide constraints on the geometry and dynamics of the subducting African plate beneath Europe.",
|
||||
"category": "anomaly",
|
||||
"tags": [
|
||||
"seismic",
|
||||
"deep-earthquake",
|
||||
"mediterranean",
|
||||
"subduction"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://earthquake.usgs.gov/fdsnws/event/1/query",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.95,
|
||||
"data_points": 1
|
||||
},
|
||||
{
|
||||
"title": "Fiji-Tonga Deep Earthquake Concentration: 13 Events at 300-600 km Depth",
|
||||
"content": "The Fiji-Tonga-Kermadec subduction system produced 13 deep earthquakes (M4+, depth >300 km) in the first half of March 2026, including a significant M7.1 event at 619.8 km depth near Kota Belud, Malaysia (likely mislocated or deep Molucca Sea event) and M6.3 at 596.3 km in the Fiji region. Depths range from 344 to 618 km with magnitudes 4.4 to 6.3. This cluster represents 13 of 26 total deep events globally (50%), consistent with the Fiji-Tonga region's role as Earth's most active deep seismicity zone. The concentration of events at 500-600 km depth suggests slab material in the mantle transition zone.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"seismic",
|
||||
"deep-earthquake",
|
||||
"fiji",
|
||||
"tonga",
|
||||
"subduction"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://earthquake.usgs.gov/fdsnws/event/1/query",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.9,
|
||||
"data_points": 13
|
||||
},
|
||||
{
|
||||
"title": "Unusual M4.9 Intraplate Earthquake in Red River Parish, Louisiana",
|
||||
"content": "A M4.9 earthquake struck Red River Parish, Louisiana at 11.1 km depth, classified as a significant event by USGS. This region is within the stable North American craton, far from any plate boundary. The event was accompanied by a cluster of 6 events (M2.5-4.4) near Powhatan, Louisiana at 8-12 km depth, indicating an ongoing sequence. Intraplate seismicity in this region may relate to stress transfer from the New Madrid Seismic Zone, ancient rift structures reactivating, or potentially induced seismicity from industrial activity. This is notable because Louisiana typically has very low natural seismicity rates.",
|
||||
"category": "anomaly",
|
||||
"tags": [
|
||||
"seismic",
|
||||
"intraplate",
|
||||
"louisiana",
|
||||
"induced-seismicity"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/significant_month.geojson",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.85,
|
||||
"data_points": 7
|
||||
},
|
||||
{
|
||||
"title": "Shallow Earthquake Cluster in Southeastern New Mexico (Permian Basin)",
|
||||
"content": "A cluster of 10 earthquakes (M2.5-3.2) detected near Whites City, New Mexico at very shallow depths (4.1-7.6 km). This area coincides with the Permian Basin, one of the most active oil and gas production regions in the United States. The narrow depth range and clustering pattern are consistent with induced seismicity from wastewater injection. The mean magnitude of 2.74 with low variability suggests a relatively uniform stress field being perturbed, typical of injection-induced sequences rather than tectonic aftershock cascades.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"seismic",
|
||||
"induced-seismicity",
|
||||
"permian-basin",
|
||||
"new-mexico"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojson",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.82,
|
||||
"data_points": 10
|
||||
},
|
||||
{
|
||||
"title": "Global March Temperature Anomaly Reaches Record-Tying +1.31C in 2024-2025",
|
||||
"content": "The March global land-ocean temperature anomaly (relative to 1901-2000 baseline) reached +1.31C in both 2024 and 2025, tying as the highest March values in the 176-year record. Both values represent z-scores of +3.01 relative to the full record distribution (mean=+0.072C, std=0.411C). The post-2000 warming rate is +0.2932C/decade, compared to +0.2119C/decade post-1980 and +0.0193C/decade pre-1980. This represents a 15.2x acceleration in warming rate. The 2020s decade mean of +1.157C already exceeds the full 2010s decade mean of +0.882C with only 6 years of data.",
|
||||
"category": "trend",
|
||||
"tags": [
|
||||
"climate",
|
||||
"temperature",
|
||||
"warming",
|
||||
"acceleration"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://www.ncei.noaa.gov/access/monitoring/climate-at-a-glance/global/time-series/globe/land_ocean/1/3/1850-2026.json",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.97,
|
||||
"data_points": 176
|
||||
},
|
||||
{
|
||||
"title": "Post-1980 Warming Rate 11x Higher Than Pre-1980 Baseline",
|
||||
"content": "Linear trend analysis of global March temperature anomalies reveals a clear regime shift around 1980. The pre-1980 warming rate was +0.0193C/decade. Post-1980, the rate increased to +0.2119C/decade (a 11.0x increase). Post-2000, it further accelerated to +0.2932C/decade. The decadal rate of change has been positive and increasing since the 1970s-1980s transition (+0.0223 C/year), with the 2010s-2020s transition showing the highest rate (+0.0275 C/year). Every decade since the 1970s has been warmer than the preceding one, with the magnitude of the increase growing monotonically.",
|
||||
"category": "trend",
|
||||
"tags": [
|
||||
"climate",
|
||||
"warming-rate",
|
||||
"regime-shift",
|
||||
"acceleration"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://www.ncei.noaa.gov/access/monitoring/climate-at-a-glance/global/time-series/globe/land_ocean/1/3/1850-2026.json",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.95,
|
||||
"data_points": 176
|
||||
},
|
||||
{
|
||||
"title": "Regional Deep-to-Shallow Earthquake Ratios Reveal Subduction Zone Activity Variations",
|
||||
"content": "Analysis of deep (>70 km) vs shallow (<70 km) earthquake ratios by tectonic region shows: Pacific Ring (West): 17/92 deep (18.5%); Pacific Ring (East): 45/228 deep (19.7%); Mediterranean-Himalayan: 6/21 deep (28.6%). The Western Pacific shows a notably higher deep event percentage, consistent with active subduction of older, colder, and more rigid oceanic lithosphere beneath the Philippine Sea and Mariana plates. The Mediterranean-Himalayan belt shows deep events primarily from the anomalous Calabrian slab. Total weekly events: 362, with 4.7% at depths >300 km globally.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"seismic",
|
||||
"subduction",
|
||||
"depth-analysis",
|
||||
"tectonic"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojson",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.85,
|
||||
"data_points": 362
|
||||
},
|
||||
{
|
||||
"title": "Active Volcanic Seismicity at Kilauea, Hawaii (M2.5-4.4, 0-30 km Depth)",
|
||||
"content": "A cluster of 6 earthquakes (M2.5-4.4) detected near Hawaiian Ocean View on the Big Island of Hawaii, with depths ranging from surface level (-1.2 km, indicating an above-sea-level event) to 30.0 km. This depth distribution spans the volcanic edifice and underlying lithosphere, consistent with ongoing magmatic activity at Kilauea or Mauna Loa. The presence of both very shallow and moderately deep events suggests magma movement through the volcanic plumbing system. The M4.4 event is the largest in this cluster, and its occurrence alongside shallower events may indicate pressurization of the magmatic system.",
|
||||
"category": "anomaly",
|
||||
"tags": [
|
||||
"seismic",
|
||||
"volcanic",
|
||||
"hawaii",
|
||||
"kilauea",
|
||||
"magmatic"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/2.5_week.geojson",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.8,
|
||||
"data_points": 6
|
||||
},
|
||||
{
|
||||
"title": "M7.1 Deep Earthquake at 619.8 km Beneath Borneo - Rare Very Deep Major Event",
|
||||
"content": "A M7.1 earthquake at 619.8 km depth near Kota Belud, Malaysia represents one of the deepest major earthquakes recorded in this region. Events at this depth occur within the subducting slab approaching the 660 km discontinuity that marks the boundary between the upper and lower mantle. The event received a 'green' PAGER alert due to its extreme depth attenuating surface shaking. Very deep earthquakes (>600 km) of this magnitude are globally rare, typically occurring only a few times per year. The event likely relates to the Celebes Sea or Sulu Sea plate subduction system and provides evidence of slab material reaching the base of the mantle transition zone in this region.",
|
||||
"category": "anomaly",
|
||||
"tags": [
|
||||
"seismic",
|
||||
"deep-earthquake",
|
||||
"major-event",
|
||||
"borneo",
|
||||
"subduction"
|
||||
],
|
||||
"domain": "earth-science",
|
||||
"source_api": "https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/significant_month.geojson",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.93,
|
||||
"data_points": 1
|
||||
}
|
||||
]
|
||||
257
examples/data/discoveries/economics_discoveries.json
Normal file
257
examples/data/discoveries/economics_discoveries.json
Normal file
|
|
@ -0,0 +1,257 @@
|
|||
[
|
||||
{
|
||||
"title": "Japan GDP Per Capita Collapse in USD Terms (2020-2024): -18.8%",
|
||||
"content": "Japan is the only major economy to see a significant decline in USD-denominated GDP per capita from 2020 to 2024, falling from $40,029 to $32,487 (-18.8%). This is driven by severe yen depreciation rather than real output decline. In contrast, the US grew +33.1%, Brazil +45.7%, and India +41.3%. This represents a historic divergence: Japan's nominal dollar-economy is shrinking while its real economy grows modestly. The yen weakness is a structural regime change reflecting BOJ yield curve control and widening interest rate differentials with the Fed. Japan's per capita GDP is now below Germany's $56,104 by a wider margin than at any point in recent decades.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"economics",
|
||||
"macro",
|
||||
"divergence",
|
||||
"currency",
|
||||
"japan"
|
||||
],
|
||||
"domain": "economics-finance",
|
||||
"source_api": "worldbank",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.95,
|
||||
"data_points": 30,
|
||||
"raw_data": {
|
||||
"JPN_2020": 40029,
|
||||
"JPN_2024": 32487,
|
||||
"USA_2020": 63516,
|
||||
"USA_2024": 84534,
|
||||
"DEU_2020": 47395,
|
||||
"DEU_2024": 56104
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "China Near-Zero Inflation Regime (0.2% in 2023-2024): Deflationary Trap Signal",
|
||||
"content": "China's inflation collapsed from 2.4% in 2020 to just 0.2% in both 2023 and 2024, while every other major economy experienced elevated inflation. The US peaked at 8.0% (2022), Germany at 6.9% (2022), Brazil at 9.3% (2022), and India sustained 5-6.7% throughout. China's near-zero inflation alongside modest GDP growth (+25.2% per capita in USD 2020-2024, lagging India's +41.3%) signals a deflationary trap reminiscent of Japan's lost decades. This represents a fundamental regime change: China has decoupled from the global inflation cycle, suggesting deep structural demand weakness, property sector deleveraging, and excess industrial capacity.",
|
||||
"category": "anomaly",
|
||||
"tags": [
|
||||
"economics",
|
||||
"macro",
|
||||
"divergence",
|
||||
"deflation",
|
||||
"china"
|
||||
],
|
||||
"domain": "economics-finance",
|
||||
"source_api": "worldbank",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.92,
|
||||
"data_points": 30,
|
||||
"raw_data": {
|
||||
"CHN_inflation": {
|
||||
"2020": 2.4,
|
||||
"2021": 1.0,
|
||||
"2022": 2.0,
|
||||
"2023": 0.2,
|
||||
"2024": 0.2
|
||||
},
|
||||
"USA_inflation": {
|
||||
"2020": 1.2,
|
||||
"2021": 4.7,
|
||||
"2022": 8.0,
|
||||
"2023": 4.1,
|
||||
"2024": 2.9
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "Germany Persistent Stagflation: 3 Consecutive Years of Negative/Near-Zero Growth with Elevated Inflation",
|
||||
"content": "Germany shows a pronounced stagflationary pattern from 2022-2024: GDP growth was 1.8% (2022), -0.9% (2023), -0.5% (2024), while inflation remained elevated at 6.9% (2022), 5.9% (2023), 2.3% (2024). This is the longest stagflationary episode among major economies in the dataset. The growth-inflation gap (inflation minus growth) was +5.1pp in 2022, +6.8pp in 2023, and +2.8pp in 2024. Despite this, Germany's USD GDP per capita still rose 18.4% due to euro appreciation effects. This masks real economic deterioration and represents a structural regime shift in Europe's largest economy, driven by energy transition costs, deindustrialization pressures, and Chinese competition.",
|
||||
"category": "regime_change",
|
||||
"tags": [
|
||||
"economics",
|
||||
"macro",
|
||||
"stagflation",
|
||||
"germany",
|
||||
"regime-change"
|
||||
],
|
||||
"domain": "economics-finance",
|
||||
"source_api": "worldbank",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.93,
|
||||
"data_points": 30,
|
||||
"raw_data": {
|
||||
"DEU_growth": {
|
||||
"2022": 1.8,
|
||||
"2023": -0.9,
|
||||
"2024": -0.5
|
||||
},
|
||||
"DEU_inflation": {
|
||||
"2022": 6.9,
|
||||
"2023": 5.9,
|
||||
"2024": 2.3
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "India Outpacing China in GDP Per Capita Growth Rate: Convergence Regime Shift",
|
||||
"content": "India's GDP per capita growth rate (41.3% from 2020-2024) now exceeds China's (25.2%) by a significant margin. While the absolute gap remains enormous ($2,695 vs $13,303), the growth differential marks a regime shift in the global economic convergence narrative. India sustained 5-6.7% inflation throughout the period (indicating strong domestic demand) while China's inflation collapsed to 0.2%. India's real GDP growth averaged approximately 7% annually vs China's approximately 5%, and this gap appears to be widening. Combined with demographic divergence (India's working-age population growing vs China's shrinking), this suggests a durable shift in the center of gravity of emerging market growth.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"economics",
|
||||
"macro",
|
||||
"convergence",
|
||||
"india",
|
||||
"china",
|
||||
"emerging-markets"
|
||||
],
|
||||
"domain": "economics-finance",
|
||||
"source_api": "worldbank",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.88,
|
||||
"data_points": 30,
|
||||
"raw_data": {
|
||||
"IND_gdp_pcap": {
|
||||
"2020": 1907,
|
||||
"2024": 2695
|
||||
},
|
||||
"CHN_gdp_pcap": {
|
||||
"2020": 10627,
|
||||
"2024": 13303
|
||||
},
|
||||
"IND_growth_pct": 41.3,
|
||||
"CHN_growth_pct": 25.2
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "Bitcoin -35.6% Drawdown with 91% Annualized Volatility Spike: Bear Market Regime Confirmed",
|
||||
"content": "Bitcoin experienced a -35.6% maximum drawdown over the 90-day period (Dec 15, 2025 to Mar 15, 2026), falling from $89,310 to a low of $62,822 before partial recovery to $71,280. The 90-day return is -20.2%. A volatility regime change was detected around week 7, when annualized volatility spiked from 50% to 91% before collapsing back to 51% in week 8. This spike-collapse pattern typically indicates a capitulation event followed by volume exhaustion. Bitcoin is currently 43.5% below its all-time high of $126,080 (Oct 2025). The combination of steep drawdown from ATH, elevated but declining volatility, and negative 90-day returns is consistent with a bear market regime rather than a correction within a bull trend.",
|
||||
"category": "regime_change",
|
||||
"tags": [
|
||||
"economics",
|
||||
"crypto",
|
||||
"bitcoin",
|
||||
"volatility",
|
||||
"regime-change",
|
||||
"bear-market"
|
||||
],
|
||||
"domain": "economics-finance",
|
||||
"source_api": "coingecko",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.9,
|
||||
"data_points": 2162,
|
||||
"raw_data": {
|
||||
"btc_90d_return_pct": -20.2,
|
||||
"btc_max_drawdown_pct": -35.6,
|
||||
"btc_price_current": 71280,
|
||||
"btc_ath": 126080,
|
||||
"btc_from_ath_pct": -43.5,
|
||||
"vol_spike_week7": 91,
|
||||
"vol_avg": 48
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "Crypto Alt-Coin Devastation: Average -50.3% from ATH with BTC Dominance at 61.7%",
|
||||
"content": "The top 20 cryptocurrency market shows severe alt-coin weakness. Non-stablecoin assets average -50.3% from their all-time highs, with Cardano (-91.5%), Bitcoin Cash (-87.7%), Dogecoin (-86.8%), and Chainlink (-82.6%) showing catastrophic declines. Meanwhile, BTC dominance within the top 20 stands at 61.7% (72.6% including ETH), indicating a classic flight-to-quality pattern within crypto markets. This divergence -- where Bitcoin holds relatively better (-43.5% from ATH) vs alt-coins averaging -50.3% -- signals risk-off sentiment and capital consolidation into perceived higher-quality assets. Solana (-69.9% from ATH) and Ethereum (-57.7%) also show significant weakness. Dogecoin exhibits an anomalously high volume-to-market-cap ratio of 5.0%, suggesting either panic selling or wash trading activity.",
|
||||
"category": "anomaly",
|
||||
"tags": [
|
||||
"economics",
|
||||
"crypto",
|
||||
"altcoins",
|
||||
"market-structure",
|
||||
"risk-off"
|
||||
],
|
||||
"domain": "economics-finance",
|
||||
"source_api": "coingecko",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.91,
|
||||
"data_points": 20,
|
||||
"raw_data": {
|
||||
"avg_ath_distance_pct": -50.3,
|
||||
"btc_dominance_top20": 61.7,
|
||||
"worst_performers": {
|
||||
"Cardano": -91.5,
|
||||
"Bitcoin Cash": -87.7,
|
||||
"Dogecoin": -86.8,
|
||||
"Chainlink": -82.6
|
||||
},
|
||||
"doge_vol_mcap_ratio": 5.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "US Exceptional Growth Divergence: +33.1% GDP/Cap While Inflation Normalizes Faster Than Peers",
|
||||
"content": "The United States shows the strongest macroeconomic position among developed economies in the 2020-2024 data. GDP per capita grew 33.1% ($63,516 to $84,534), inflation peaked at 8.0% (2022) but declined rapidly to 2.9% (2024) -- faster than Germany (still 2.3% with negative growth) or Japan (2.7% with near-zero growth). Only the 2022 year shows a stagflationary signal (2.5% growth vs 8.0% inflation). By 2024, the US had achieved a rare 'soft landing' signature: GDP growth positive, inflation declining toward target, with real per capita income at an all-time high. This US outperformance vs Germany (-0.5% growth), Japan (0.1% growth), and China (0.2% inflation/demand weakness) represents the widest developed-economy growth gap since the post-2008 recovery.",
|
||||
"category": "pattern",
|
||||
"tags": [
|
||||
"economics",
|
||||
"macro",
|
||||
"us-exceptionalism",
|
||||
"soft-landing",
|
||||
"divergence"
|
||||
],
|
||||
"domain": "economics-finance",
|
||||
"source_api": "worldbank",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.9,
|
||||
"data_points": 30,
|
||||
"raw_data": {
|
||||
"USA_gdp_pcap_growth": 33.1,
|
||||
"USA_inflation_2024": 2.9,
|
||||
"DEU_growth_2024": -0.5,
|
||||
"JPN_growth_2024": 0.1,
|
||||
"USA_growth_2024": "positive (above peers)"
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "Cross-Market Signal: Crypto Bear Market Coincides with Global Growth Fragmentation",
|
||||
"content": "A cross-market correlation emerges when overlaying macro and crypto data. The crypto market entered bear territory (BTC -43.5% from Oct 2025 ATH, alts -50.3% avg) during a period of maximum global macroeconomic fragmentation: Germany in recession, Japan's dollar-economy shrinking, China in deflationary trap, while the US maintains growth. This pattern suggests that crypto's risk-asset behavior is responding to global liquidity tightening and growth uncertainty rather than US-specific conditions. The flight to BTC dominance (61.7%) within crypto mirrors the flight to USD-denominated assets in traditional markets (US GDP per capita outperformance). Both patterns point to a global risk-off regime where capital concentrates in perceived safe havens (USD, BTC relative to alts). The 90-day BTC volatility spike-collapse (50% to 91% to 51%) occurred during a period of macro data releases confirming German recession and Chinese deflation persistence.",
|
||||
"category": "cross_correlation",
|
||||
"tags": [
|
||||
"economics",
|
||||
"macro",
|
||||
"crypto",
|
||||
"cross-market",
|
||||
"correlation",
|
||||
"regime-change"
|
||||
],
|
||||
"domain": "economics-finance",
|
||||
"source_api": "worldbank,coingecko",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.82,
|
||||
"data_points": 2212,
|
||||
"raw_data": {
|
||||
"btc_from_ath": -43.5,
|
||||
"alt_avg_from_ath": -50.3,
|
||||
"deu_growth_2024": -0.5,
|
||||
"chn_inflation_2024": 0.2,
|
||||
"jpn_gdp_pcap_change": -18.8,
|
||||
"usa_gdp_pcap_change": 33.1,
|
||||
"btc_dominance": 61.7
|
||||
}
|
||||
},
|
||||
{
|
||||
"title": "Brazil Anomalous Outperformance: +45.7% GDP/Cap Growth Leads All Major Economies",
|
||||
"content": "Brazil posted the highest GDP per capita growth rate among the six major economies tracked, at +45.7% from 2020 ($7,074) to 2024 ($10,311). This outpaces even India (+41.3%) and the United States (+33.1%), and dwarfs China (+25.2%), Germany (+18.4%), and Japan (-18.8%). However, this comes with important caveats: Brazil experienced stagflationary conditions in both 2020 (growth -3.3%, inflation 3.2%) and 2022 (growth 3.0%, inflation 9.3%). The 2024 GDP per capita ($10,311) is actually slightly below 2023 ($10,378), suggesting momentum is fading. Brazil's strong showing is partly a real exchange rate effect (BRL appreciation) combined with commodity price tailwinds. The slight 2023-to-2024 decline despite positive nominal growth may signal the beginning of a deceleration phase.",
|
||||
"category": "anomaly",
|
||||
"tags": [
|
||||
"economics",
|
||||
"macro",
|
||||
"brazil",
|
||||
"emerging-markets",
|
||||
"outperformance"
|
||||
],
|
||||
"domain": "economics-finance",
|
||||
"source_api": "worldbank",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.85,
|
||||
"data_points": 30,
|
||||
"raw_data": {
|
||||
"BRA_gdp_pcap": {
|
||||
"2020": 7074,
|
||||
"2023": 10378,
|
||||
"2024": 10311
|
||||
},
|
||||
"BRA_inflation": {
|
||||
"2020": 3.2,
|
||||
"2021": 8.3,
|
||||
"2022": 9.3,
|
||||
"2023": 4.6,
|
||||
"2024": 4.4
|
||||
},
|
||||
"BRA_growth_pct": 45.7
|
||||
}
|
||||
}
|
||||
]
|
||||
178
examples/data/discoveries/space_discoveries.json
Normal file
178
examples/data/discoveries/space_discoveries.json
Normal file
|
|
@ -0,0 +1,178 @@
|
|||
[
|
||||
{
|
||||
"title": "TIC 241249530 b: Record eccentricity hot Jupiter on collision course with host star",
|
||||
"content": "TIC 241249530 b exhibits the highest orbital eccentricity (e=0.9412) among all recently discovered exoplanets, with a mass of 4.98 Jupiter masses and a 165.8-day period. This extreme eccentricity indicates the planet is undergoing tidal migration toward its host star -- a rare snapshot of a hot Jupiter caught in the act of orbital circularization. At periastron, it plunges to a fraction of its semi-major axis, experiencing extreme tidal heating. This is a textbook case of high-eccentricity migration, a theorized but rarely observed pathway for hot Jupiter formation.",
|
||||
"category": "anomaly",
|
||||
"tags": ["space", "exoplanet", "orbital-dynamics", "hot-jupiter", "tidal-migration"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA Exoplanet Archive TAP",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.95,
|
||||
"data_points": 604
|
||||
},
|
||||
{
|
||||
"title": "ZTF J1828+2308 b: Ultra-short period brown dwarf companion completing orbit in 2.7 hours",
|
||||
"content": "ZTF J1828+2308 b has an orbital period of just 0.112 days (2.69 hours) with a mass of 20.0 Jupiter masses, placing it firmly in the brown dwarf regime. This is one of the shortest known orbital periods for a substellar companion. The object orbits so close to its host that it completes over 8 orbits per Earth day. At this proximity, it must be experiencing extreme irradiation and tidal forces. A companion object, ZTF J1230-2655 b (22.1 Mj, period 0.236 days), shows a similar pattern -- both discovered via ZTF transit surveys, suggesting a population of ultra-compact brown dwarf binaries being uncovered by wide-field time-domain surveys.",
|
||||
"category": "anomaly",
|
||||
"tags": ["space", "exoplanet", "ultra-short-period", "brown-dwarf", "compact-binary"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA Exoplanet Archive TAP",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.92,
|
||||
"data_points": 604
|
||||
},
|
||||
{
|
||||
"title": "Barnard's Star multi-planet system: Four sub-Earth-mass worlds at 1.83 parsecs",
|
||||
"content": "Barnard's Star, the second closest stellar system to Earth at 1.83 pc, now hosts four confirmed planets (b, c, d, e) all with masses below 0.4 Earth masses (0.2-0.4 Earth masses). Planet e has a mass of just 0.19 Earth masses -- roughly twice the mass of Mars -- making it one of the least massive exoplanets ever detected via radial velocity. This tightly-packed system of sub-Earth worlds around a nearby M dwarf demonstrates that rocky planet formation extends to remarkably low masses even in our immediate stellar neighborhood. The equilibrium temperatures range from 340K to 483K, placing some of these worlds near the inner edge of habitability considerations.",
|
||||
"category": "pattern",
|
||||
"tags": ["space", "exoplanet", "nearby-star", "sub-earth", "radial-velocity", "barnards-star"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA Exoplanet Archive TAP",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.93,
|
||||
"data_points": 604
|
||||
},
|
||||
{
|
||||
"title": "TOI-6324 b: Earth-mass planet with 6.7-hour orbital period at 1216K",
|
||||
"content": "TOI-6324 b orbits its star every 0.279 days (6.7 hours) with a mass of just 1.2 Earth masses and an equilibrium temperature of 1216K. This is among the shortest orbital periods known for an Earth-mass planet. At this temperature and proximity, the planet likely has a molten surface (lava world) and may be actively losing its atmosphere via photo-evaporation. Similarly, TOI-6255 b (1.4 Earth masses, 5.7-hour period) represents another member of this ultra-short-period rocky planet population. These objects probe the survival limit for rocky planets against tidal disruption and atmospheric stripping.",
|
||||
"category": "anomaly",
|
||||
"tags": ["space", "exoplanet", "ultra-short-period", "lava-world", "rocky-planet"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA Exoplanet Archive TAP",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.90,
|
||||
"data_points": 604
|
||||
},
|
||||
{
|
||||
"title": "2026 exoplanet discovery surge dominated by microlensing and radial velocity methods",
|
||||
"content": "In 2026, 54 unique exoplanets have already been confirmed (68 database entries across solution variants). The method distribution reveals a shift: Microlensing (22 entries, 32%) and Radial Velocity (26 entries, 38%) dominate over Transit (15 entries, 22%). This contrasts sharply with the 2024 dataset where Transit detections (291 of 604 total entries, 48%) led all methods. The microlensing surge is driven by KMT (Korea Microlensing Telescope Network) campaigns now processing 2022-2025 bulge data, revealing massive planets at kiloparsec distances (2900-7320 pc) inaccessible to other methods. This represents a shift in the mass-distance parameter space being explored.",
|
||||
"category": "pattern",
|
||||
"tags": ["space", "exoplanet", "discovery-method", "microlensing", "survey-statistics"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA Exoplanet Archive TAP",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.88,
|
||||
"data_points": 604
|
||||
},
|
||||
{
|
||||
"title": "OGLE-2014-BLG-0221L b: 72 Jupiter-mass object challenges planet/star boundary",
|
||||
"content": "OGLE-2014-BLG-0221L b has a reported mass of 72.16 Jupiter masses in one solution variant (48.62 Mj in another), placing it at or beyond the hydrogen-burning limit (~75-80 Mj). An object at 72 Mj orbiting at 6750 pc via microlensing raises fundamental classification questions: is this a very low-mass star, a brown dwarf, or an extreme planetary-mass companion? The dual solutions (48.62 and 72.16 Mj) highlight the mass degeneracy inherent in microlensing events and the difficulty of classifying objects near the deuterium/hydrogen burning boundaries.",
|
||||
"category": "anomaly",
|
||||
"tags": ["space", "exoplanet", "brown-dwarf-boundary", "mass-classification", "microlensing"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA Exoplanet Archive TAP",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.82,
|
||||
"data_points": 604
|
||||
},
|
||||
{
|
||||
"title": "Asteroid 2026 EG1: Sub-lunar distance flyby at 0.83 lunar distances on March 10-15",
|
||||
"content": "Asteroid 2026 EG1 passed Earth at just 0.83 lunar distances (318,362 km), making it the closest approach in the March 10-15 observation window. With an estimated diameter of up to 21 meters and a velocity of 9.6 km/s, it was not classified as potentially hazardous due to its small size. Two additional objects (2026 EU2 at 0.91 LD and 2026 EV2 at 0.96 LD) also passed within 1 lunar distance during the same period. Three sub-lunar-distance passes in 6 days is notable and reflects the improving detection capability of current survey programs for small near-Earth objects.",
|
||||
"category": "anomaly",
|
||||
"tags": ["space", "asteroid", "close-approach", "neo", "planetary-defense"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA NeoWs",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.94,
|
||||
"data_points": 99
|
||||
},
|
||||
{
|
||||
"title": "Hazardous asteroid cluster: 8 PHAs tracked in 6-day window including kilometer-class objects",
|
||||
"content": "Between March 10-15, 2026, NASA tracked 8 potentially hazardous asteroid (PHA) encounters, including two kilometer-class objects: 2014 MR26 (623-1393m diameter, velocity 25.0 km/s at 48.3 LD) and 866876/2015 TE323 (587-1312m, 11.1 km/s at 48.8 LD). March 11 saw the highest concentration with 4 hazardous objects tracked simultaneously. The largest object (2014 MR26) at up to 1.4 km diameter traveling at 25 km/s carries enormous kinetic energy. While all passed at safe distances (>27 LD), the simultaneous tracking of multiple large PHAs demonstrates the scale of the planetary defense monitoring challenge.",
|
||||
"category": "pattern",
|
||||
"tags": ["space", "asteroid", "potentially-hazardous", "planetary-defense", "kilometer-class"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA NeoWs",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.91,
|
||||
"data_points": 99
|
||||
},
|
||||
{
|
||||
"title": "Asteroid 2019 AM13: Anomalous velocity outlier at 34.5 km/s",
|
||||
"content": "Asteroid 2019 AM13 exhibited a relative velocity of 34.5 km/s (124,248 km/h), making it the fastest NEO in the March 10-15 tracking window -- 2.7x the mean velocity of 12.8 km/s and 70% faster than the second-fastest object. At 231m estimated diameter, it passed at 55.0 lunar distances. Such extreme velocities suggest a highly inclined or retrograde orbit, potentially indicating a dynamically excited population or a past close encounter with a planet that boosted its velocity. Objects with these velocities are particularly challenging for deflection missions due to the extreme delta-v required.",
|
||||
"category": "anomaly",
|
||||
"tags": ["space", "asteroid", "high-velocity", "orbital-dynamics", "neo"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA NeoWs",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.87,
|
||||
"data_points": 99
|
||||
},
|
||||
{
|
||||
"title": "Extreme-speed CME on March 3: 1294-1301 km/s eruption with wide angular extent",
|
||||
"content": "On 2026-03-03 at 11:01Z, a coronal mass ejection reached speeds of 1294-1301 km/s (two measurement analyses), classifying it as an occasional (type O) fast CME. With a half-angle of 29-45 degrees, it was one of the widest angular events in the period. Its longitude (-131 to -150 degrees) indicates a far-side origin, sparing Earth from a direct hit. This speed is nearly 3x the period mean of 438 km/s and would rank as a significant space weather event had it been Earth-directed. The speed is consistent with a fast halo CME that, if geoeffective, could produce G3+ geomagnetic storm conditions.",
|
||||
"category": "anomaly",
|
||||
"tags": ["space", "solar", "cme", "extreme-speed", "space-weather"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA DONKI CME",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.93,
|
||||
"data_points": 64
|
||||
},
|
||||
{
|
||||
"title": "Active Region 14384: 12-day persistent activity spanning full solar disk transit",
|
||||
"content": "Active Region 14384 demonstrated sustained eruptive activity across a 12-day span from March 1 to March 14. It produced a C4.0 flare at N10E90 (eastern limb) on March 1 and an M1.1 flare at N10W70 (western hemisphere) on March 13, tracking its full rotation across the solar disk. It generated 4 associated CMEs with speeds from 364 to 582 km/s, with an acceleration trend: the March 14 CMEs (394-582 km/s) were faster than the March 1 CME (364 km/s). The M1.1 flare on March 13 was the only M-class flare in the entire 15-day observation period. The sustained N10 latitude position across all observations confirms consistent heliographic latitude tracking of this long-lived active region.",
|
||||
"category": "pattern",
|
||||
"tags": ["space", "solar", "active-region", "flare", "long-duration", "solar-cycle"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA DONKI FLR/CME",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.91,
|
||||
"data_points": 71
|
||||
},
|
||||
{
|
||||
"title": "Northern hemisphere solar activity dominance: 86% of flares from N07-N13 latitude band",
|
||||
"content": "Six out of seven solar flares (86%) originated from the northern solar hemisphere, clustered in a narrow latitude band between N07 and N13. Only one flare (C8.9 from AR 14392 at S15E53) broke this pattern. The flare-producing active regions (14381, 14384, 14387, 14389) all emerged within this 6-degree latitude band. This strong hemispheric asymmetry is consistent with the known north-south asymmetry of Solar Cycle 25/26 activity, where magnetic flux emergence has been preferentially concentrated in the northern hemisphere. The tight latitude clustering suggests these regions may share a common subsurface magnetic flux system.",
|
||||
"category": "pattern",
|
||||
"tags": ["space", "solar", "hemispheric-asymmetry", "solar-cycle", "active-regions"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA DONKI FLR",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.85,
|
||||
"data_points": 7
|
||||
},
|
||||
{
|
||||
"title": "CME burst pattern: 64 ejections in 14 days with March 7 and 13 as peak days",
|
||||
"content": "The Sun produced 64 coronal mass ejections between March 1-14, 2026, averaging 4.6 per day. Two peak days stand out: March 7 (9 CMEs) and March 13 (8 CMEs), together accounting for 27% of all activity. Of the 64 CMEs, 20 (31%) were classified as common/fast (type C) and 2 (3%) as occasional/extreme (type O). Only one CME (March 6, 380 km/s at longitude -37) showed potential Earth impact as a glancing blow. The high CME rate with minimal geoeffective events reflects a period where most solar eruptions were directed away from the Sun-Earth line, a geometrically fortunate circumstance during an otherwise active period.",
|
||||
"category": "pattern",
|
||||
"tags": ["space", "solar", "cme", "activity-rate", "space-weather", "geoeffectiveness"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA DONKI CME",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.89,
|
||||
"data_points": 64
|
||||
},
|
||||
{
|
||||
"title": "Cross-domain: Elevated solar activity coincides with dense NEO approach window",
|
||||
"content": "The March 10-15 window saw simultaneous peaks in both solar activity (22 CMEs, 3 flares including the period's only M-class event) and near-Earth asteroid encounters (99 tracked objects, 8 potentially hazardous). On March 13 specifically, 8 CMEs were ejected, an M1.1 flare occurred, and 2 hazardous asteroids were being tracked at closest approach (including 2013 RZ73 at 27.3 LD). While these phenomena are physically independent, the temporal coincidence highlights a compounded space situational awareness challenge: mission planners and space weather forecasters must simultaneously monitor threats from both the solar direction and the interplanetary environment. For any hypothetical asteroid deflection mission launched during such a window, solar particle events could degrade spacecraft electronics and communications.",
|
||||
"category": "pattern",
|
||||
"tags": ["space", "cross-domain", "solar", "asteroid", "space-situational-awareness", "mission-planning"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA DONKI/NeoWs",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.78,
|
||||
"data_points": 170
|
||||
},
|
||||
{
|
||||
"title": "Flare-CME energy decoupling: Weaker flares sometimes produce faster CMEs",
|
||||
"content": "Analysis of the 6 flare-CME linked pairs reveals a counterintuitive inverse relationship in some cases. The C2.0 flare (March 8, weakest in the dataset) triggered a CME at 565 km/s (the fastest flare-associated CME), while the stronger C5.2 and C5.9 flares on March 1 produced slower CMEs at 421 and 396 km/s respectively. The two weakest flares (C2.0 and C2.4) also produced the most extreme speed difference between them: 565 vs 165 km/s. This decoupling between flare intensity and CME speed suggests that CME acceleration is governed more by the overlying magnetic field structure and flux rope properties than by the reconnection energy measured as X-ray flare class. The M1.1 flare on March 13 notably had no linked CME, indicating a confined eruption.",
|
||||
"category": "pattern",
|
||||
"tags": ["space", "solar", "flare-cme-relationship", "magnetic-reconnection", "energy-partition"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA DONKI FLR/CME",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.83,
|
||||
"data_points": 71
|
||||
},
|
||||
{
|
||||
"title": "HD 143811 AB b: Exoplanet with 320-year orbital period detected via imaging",
|
||||
"content": "HD 143811 AB b has an orbital period of 117,000-120,000 days (320-329 years) with a mass of 5.6-6.1 Jupiter masses. This is the longest orbital period among all recently confirmed exoplanets in the dataset. At a distance of 66-73 pc, the planet was detected via direct imaging. Its extreme orbital distance means it has completed less than 1% of a single orbit since the invention of the telescope. Such wide-orbit giant planets constrain models of planet formation at large separations, potentially favoring gravitational instability over core accretion as the formation mechanism at these distances.",
|
||||
"category": "anomaly",
|
||||
"tags": ["space", "exoplanet", "long-period", "direct-imaging", "planet-formation"],
|
||||
"domain": "space-science",
|
||||
"source_api": "NASA Exoplanet Archive TAP",
|
||||
"timestamp": "2026-03-15T00:00:00Z",
|
||||
"confidence": 0.86,
|
||||
"data_points": 604
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue