Skip to main content

AIN Research

Autonomous Intelligence Network — Core Research & Knowledge Compilation Engine

Python License: MIT PyPI

ain-research is the core orchestration engine powering the Autonomous Intelligence Network (AIN) — a self-organizing research system that autonomously ingests scientific literature, detects contradictions between knowledge nodes, and evolves credibility scores for every research concept it tracks.


🚀 Quick Start & Installation

pip install ain-research

Verify the installation:

import ain_research

[!IMPORTANT] AIN High-Fidelity Standard: As of v1.1.1, the Autonomous Intelligence Network (AIN) now includes a blazing fast, zero-copy C-MMap Vector Retrieval Engine that uses dynamic C-compilation and mmap page-caching to deliver Linux-style zero-copy vector search at 2,000+ QPS without requiring MSVC dependencies!


🔬 Core Architecture & API Reference

1. Knowledge Orchestrator (ain)

The central brain routes new research concepts to the correct vault subdirectory, compiles the knowledge wiki incrementally, and drives all downstream intelligence modules.

Usage:

import argparse
from ain_research.ain import cmd_remember, compile_wiki

# Save a concept (auto-routes based on tags)
args = argparse.Namespace(
    title="Hawkes Process in Market Making",
    content="A self-exciting point process where each trade increases P(next trade)...",
    tags="quant,finance,microstructure"
)
cmd_remember(args)
# → Saved to: vault/wiki/02_Research/Quant_Finance/

# Rebuild the full knowledge index
compile_wiki()

2. Autonomous Research Daemon (infinite_research_daemon)

Crawls ArXiv and GitHub continuously, utilizing a multi-threaded concurrent architecture and a dynamic multi-source proxy aggregator pulling from hundreds of free public proxies to bypass rate limits and achieve virtually infinite Request-Per-Second (RPS) thresholds.

Usage:

# Single pass
python -m ain_research.infinite_research_daemon --run-once

# Ingest a specific paper
python -m ain_research.infinite_research_daemon --paper 2406.12345

3. Storage Foundation (db_manager)

OS-level atomic file locking + SQLite backing store with dead-letter queue logic.

Usage:

from ain_research.db_manager import FileLock, get_system_metrics

with FileLock():
    # safe critical section
    pass

metrics = get_system_metrics()
print(f"Queue pending: {metrics['queue_pending']}")

4. Contradiction Engine (contradiction_engine)

Zero-LLM-token 3-voter ensemble that detects mutually inconsistent research claims in < 500ms on 19,000+ nodes.

Voters:

  • TF-IDF cosine similarity (≥ 0.72)
  • Jaccard unigram overlap (≥ 0.45)
  • High semantic sim + tag disjointness

Usage:

from ain_research.contradiction_engine import detect_contradictions, get_unresolved_count

# Preview conflicts without writing to disk
conflicts = detect_contradictions(all_pages, dry_run=True)
print(f"Unresolved: {get_unresolved_count()}")

5. Credibility Manager (credibility_manager)

Self-evolving node reputation scoring with automatic archival and first-principles promotion lifecycle.

confirmed → score += 0.1  (max 1.0)
falsified → score -= 0.2  (min 0.0)
score < 0.3 → archived (_Archived_Falsified/)
score > 0.8 for 30d → first_principles (_First_Principles/)

Usage:

from ain_research.credibility_manager import record_confirmation, get_all_scores_summary

record_confirmation("Hawkes_Process_in_Market_Making")
for r in get_all_scores_summary()[:5]:
    print(f"{r['score']:.2f} [{r['status']}] {r['slug']}")

6. Hybrid Citation Pipeline (citation_pipeline)

Fast and accurate 100% semantic citation generator using Crossref and ArXiv. Handles entire paragraphs by extracting keyword tokens for API queries, then scores candidates natively against the full paragraph context using TF-IDF cosine similarity.

Usage:

# Set your Crossref Polite Pool email to authenticate
export CROSSREF_MAILTO="you@example.com"

# Generate top 5 citations from a full paragraph
python ain.py cite "Market making algorithms utilizing Hawkes processes represent a significant leap in high-frequency trading. By modeling the arrival of limit orders and market orders as self-exciting point processes, these strategies can dynamically adjust their bid-ask spreads in response to clustered volatility and order flow imbalance."

🏛️ System Architecture

ArXiv / GitHub API
        ↓
infinite_research_daemon  →  db_manager (SQLite Queue)
                                        ↓
                               ain.py Orchestrator
                               ↙        ↓        ↘
                    vault .md    contradiction   credibility
                    INDEX.md     engine          manager
                    MOCs         _Disputes/      _First_Principles/
                    visualizer_data.json

🤝 Contribution & Links

License

MIT © 2026 Sambit Mishra / AIN Labs

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ain_research-2.7.0.tar.gz (52.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ain_research-2.7.0-py3-none-any.whl (55.9 kB view details)

Uploaded Python 3

File details

Details for the file ain_research-2.7.0.tar.gz.

File metadata

  • Download URL: ain_research-2.7.0.tar.gz
  • Upload date:
  • Size: 52.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.14

File hashes

Hashes for ain_research-2.7.0.tar.gz
Algorithm Hash digest
SHA256 8a463535cea0a5b9791976e6f4ae747e2e8a81f2124f864e28b011878b21185d
MD5 f3a9ca75cd77d9200e3b80b282bc3d08
BLAKE2b-256 99a69cdcf2ab1100f06c24236a6bc6c9dcbbb9cc109e6d779619288c99812d67

See more details on using hashes here.

File details

Details for the file ain_research-2.7.0-py3-none-any.whl.

File metadata

  • Download URL: ain_research-2.7.0-py3-none-any.whl
  • Upload date:
  • Size: 55.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.14

File hashes

Hashes for ain_research-2.7.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bb5198e74bacdb3fa649c8df7fb1cb87e0bfbc0d339a2d6f220a97e9cb740670
MD5 47eab271bc9c0e0d2a953c944a4da709
BLAKE2b-256 bcf86abacade004778ea4c55eaf6ff7a381761c273736a8dd84316b3cb52200d

See more details on using hashes here.

Release history Release notifications | RSS feed

2.8.0

2 files

This release

2.7.0 This release

2 files

2.6.0

2 files

2.5.3

2 files

1.1.1

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page