Skip to main content
Axon

Your documents, answerable. On your hardware.

Drop in PDFs, code, spreadsheets, or URLs — ask anything, get cited answers from a local LLM.
Nothing leaves your machine.

PyPI version Python 3.10+ CI License: MIT Code style: black


Axon REPL — startup banner, ingest, and a cited query

🤔 Why Axon?

Most RAG tools make you choose between cloud power and data privacy. Axon is local-first — full capability with zero egress when you run on Ollama or vLLM; cloud providers (OpenAI, Gemini, Grok, GitHub Copilot, Ollama Cloud) stay optional.

  • 🔒 Private by default — local inference via Ollama or vLLM is the recommended path; cloud providers (OpenAI, Gemini, Grok, GitHub Copilot, Ollama Cloud) remain opt-in. No telemetry. Strict offline / air-gap mode shuts every outbound call off entirely.
  • 📄 Ingest anything — 54 file formats (PDF, DOCX, Jupyter, code, images, URLs) in one command. SHA-256 dedup skips unchanged files.
  • 🤖 Works in your tools@axon in Copilot Chat, MCP for Claude Code / Codex / Gemini CLI / Cursor, Graph panel in VS Code or your browser.
  • 🤝 Built for teams — share your knowledge base with signed, revocable read-only keys. Sealed (AES-256-GCM encrypted) sharing works safely through OneDrive, Dropbox, and Google Drive. Per-user permissions, full audit trail, no extra infrastructure. Quick setup →
  • 🕸️ See your knowledge as a graph — interactive 3D entity-relationship graph. Embedded webview in VS Code; opens in your browser everywhere else. Click any node to inspect its supporting chunks and source excerpt.
  • 🔬 Production-grade retrieval — hybrid search, reranking, HyDE, multi-query expansion, and automatic web fallback. Zero manual tuning.

✨ Capabilities

🔍 Retrieval

  • Hybrid semantic + keyword search
  • HyDE, multi-query, step-back, query decomposition
  • Sentence-window context retrieval
  • BGE reranker for second-pass precision
  • Web fallback via Brave Search (CRAG-Lite)
  • Smart per-question query routing
  • Structured citationssources + citations arrays with character offsets (Claude / OpenAI compatible)

🧠 Graph Intelligence

  • GraphRAG — entity/relation/community graph (local / global / hybrid)
  • Dynamic Graph — bi-temporal SQLite facts with valid_at + invalid_at
  • Federated — weighted RRF over multiple backends, tunable per query
  • Point-in-time queries (v0.3.2) — --graph-retrieve "..." --graph-at TS
  • Conflict inspection (v0.3.2) — --graph-conflicts surfaces status='conflicted' facts
  • RAPTOR — hierarchical corpus summaries · Code Graph via AST · 3D webview

📥 Ingest Everything

  • 54 file formats — PDF, DOCX, XLSX, PPTX, Jupyter, images, 24 code formats
  • URL ingestion — any public web page
  • SHA-256 dedup skips unchanged files
  • Stale detection for modified sources
  • 4 content-aware chunking strategies

🔧 LLMs & Embeddings

  • Local: Ollama, vLLM
  • Cloud (API key): OpenAI, Gemini, xAI Grok, GitHub Copilot, Ollama Cloud
  • Hot-swap provider and model — no restart needed
  • Streaming on all providers
  • 4 embedding providers; BGE-M3 for multilingual

🏗️ Projects & Privacy

  • Isolated knowledge base per project, with nesting
  • Federated search across projects (@projects, @mounts, @store)
  • Strict offline / air-gapped mode — zero outbound calls
  • AxonStore — signed read-only sharing across OS users

☁️ Cloud-Drive Sharing

Sealed (AES-256-GCM encrypted) sharing works through any cloud sync drive. Files are ciphertext on disk — cloud providers see only encrypted bytes.

  • OneDrive Personal / Business
  • Dropbox
  • Google Drive (Mirror mode)

Sharing Guide | Quick Setup →

🛡️ Governance & Agents

  • Governance Console — full audit trail of every query
  • Graceful maintenance states: normal → draining → readonly → offline
  • REST API — 73 endpoints with Swagger docs at /docs
  • MCP server — 51 tools for Claude Code, Codex, Gemini, Cursor, Copilot
  • @axon VS Code chat participant with Graph and Governance panels

⚡ Quick Start

pip install "axon-rag[starter]"   # Python 3.10+. Sealed sharing + extra loaders. Web GUI ships with axon-api.
axon                              # First run auto-launches the setup wizard, then drops into the REPL.

That's it. The wizard configures your LLM provider, embedding model, and retrieval defaults; subsequent runs go straight to the REPL.

See it run — first-run wizard, ingest, and a cited query
Axon REPL — first-run wizard, ingest, and a cited query in action

If something doesn't look right:

axon --doctor                     # Health checks: Python, Ollama, model pulled, store writable.
axon update                       # Check PyPI and upgrade the package + VS Code extension together.

Local inference uses Ollama or vLLM (self-hosted). Cloud providers (OpenAI, Gemini, Grok, GitHub Copilot, Ollama Cloud) work via API keys.

→ Setup guide for VS Code, MCP, and cloud providers →


🔐 Sealed Sharing Quick Start

Share an encrypted knowledge base through OneDrive, Dropbox, or Google Drive. Cloud providers see only ciphertext.

pip install "axon-rag[sealed]"   # install sealed extra on both machines

Owner (5 steps)

axon --store-init "/path/to/OneDrive/AxonStore"  # 1. point store at sync folder
axon --store-bootstrap "your-passphrase"          # 2. bootstrap master key (once per machine)
axon --project-new research                       # 3. create project + ingest
axon --project research --ingest /docs
axon --project-seal research                      # 4. encrypt in place (≈1 s per 100 MB)
axon --share-generate research alice              # 5. print SEALED1:... string — send to grantee

Grantee (3 steps)

axon --store-init "/path/to/OneDrive/AxonStore"   # 1. same shared folder
axon --share-redeem "SEALED1:..."                  # 2. redeem — DEK stored in OS keyring
axon --project mounts/owner_research "question"   # 3. query; Axon decrypts to temp, wipes on exit

→ Full Sharing Guide — OneDrive setup, revocation, headless/Docker grantees, filesystem compatibility matrix.


🚀 Entry Points

Command Starts Default Port Best For
axon Interactive REPL Day-to-day exploration, power users
axon-api FastAPI REST server + web GUI 8420 Agents, scripts, CI pipelines, browser UI
axon-mcp MCP stdio server Any MCP-compatible agent (Claude Code, Codex, Gemini CLI, Cursor, Copilot…)
axon-ui Streamlit UI — deprecated 8501 Superseded by the web GUI below

Browser UI: start axon-api and open http://localhost:8420/gui/. No extra command or dependency needed — the GUI ships with the server.

Deprecation: axon-ui (Streamlit) is deprecated and will be removed in a future release. It is no longer part of [starter] or [all]; install it explicitly with pip install "axon-rag[ui]" if you still need it.

Single-instance routing. If an axon-api server is already running, the axon CLI detects it (a quick /health/ready probe) and routes store-mutating commands — --ingest and project create / delete / switch — through that server instead of opening a second in-process copy of the same store. This avoids two processes racing on the vector-store files, skips reloading the embedding model on every CLI call, and keeps a single writer for both the store and the logs. Pass --local to force an in-process brain, or point the CLI at a specific server with the AXON_API_BASE environment variable (or the api_host / api_port config fields).

Relatedly, axon-api itself refuses to start a second server on a store another axon-api is already serving (one writer per store) — set AXON_ALLOW_MULTIPLE_SERVERS=1 if you really want two.


🔌 VS Code + GitHub Copilot

Axon Copilot integration

Axon VS Code Graph Panel — answer, cited sources, and interactive 3D code graph

Install the bundled VSIX to unlock the @axon chat participant, Knowledge Graph panel, Code Graph panel, and Governance dashboard — directly inside VS Code alongside Copilot.

Extensions panel  →  "..."  →  Install from VSIX...
→  run `axon-ext`  (or install from VSIX manually)

Or connect via MCP for Copilot agent mode — point .vscode/mcp.json at axon-mcp and all 51 tools appear in the agent hammer menu automatically.

The VS Code extension surfaces 39 LM tools to Copilot Chat, covering core RAG operations, sealed-store security, sharing, and governance.

Full setup guide →


🐍 Use Axon from Your Python Agent

Drop-in retrievers for LangChain and LlamaIndex agents — no REST round-trips, no extra process. Both wrap the same AxonBrain.search_raw() codepath the REST and REPL surfaces use, so hybrid search, reranking, HyDE, multi-query, and the GraphRAG budget apply automatically.

# pip install "axon-rag[langchain]"
from axon import AxonBrain, AxonConfig
from axon.integrations.langchain import AxonRetriever

brain = AxonBrain(AxonConfig.from_yaml("config.yaml"))
retriever = AxonRetriever(brain=brain, top_k=5)

docs = retriever.invoke("what does the project do?")  # list[Document]
# pip install "axon-rag[llama-index]"
from axon.integrations.llama_index import AxonLlamaRetriever

retriever = AxonLlamaRetriever(brain=brain, top_k=5)
nodes = retriever.retrieve("what does the project do?")  # list[NodeWithScore]

Per-call overrides (e.g. force HyDE for one question): retriever.with_overrides({"hyde": True}).invoke(query). From async code, await retriever.aretrieve(query, hyde=True, top_k=8) accepts the same flags as kwargs without rebuilding the retriever (v0.4.1).


📚 Documentation

Getting started

Guide What it covers
🚀 Getting Started First-time walkthrough — ingest, query, settings
⚙️ Setup Guide Install, models, VS Code extension, MCP connection
🔧 Troubleshooting Common errors and platform-specific fixes

Reference

Guide What it covers
🔑 Admin Reference Every endpoint, REPL command, CLI flag, and config option
Quick Reference Commands and flags at a glance
📡 API Reference Full REST endpoint reference with request/response schemas
🔌 MCP Tools All 55 MCP tool signatures with parameter defaults

Deep dives

Guide What it covers
🤖 Model Guide Choosing LLM and embeddings; per-provider config examples
🔬 Advanced RAG HyDE, RAPTOR, GraphRAG, CRAG-Lite — how each technique works
🌐 Web Search Brave Search integration, CRAG-Lite fallback setup
🏝️ Offline / Air-gap Guide Full air-gap setup, model pre-download, local-assets-only mode
💻 Code RAG Guide Code graph retrieval and structural search
🤝 AxonStore Multi-user sharing, revocation, and the lease lifecycle
🔐 Sharing Guide Plaintext and sealed sharing — which filesystems are safe, OneDrive/Dropbox/Google Drive setup, revocation
📊 Governance Console Audit trail, maintenance runbook, session management
📈 Evaluation Guide RAGAS metrics, running evals, building testsets
🛠️ Development Guide Tests, contributing, pre-commit hooks, packaging & release

🔒 Security

Ingestion is sandboxed to a configurable base directory (RAG_INGEST_BASE). Requests outside it are rejected with 403. See SECURITY.md.

📄 License

MIT — see LICENSE.

Release files for axon-rag 0.4.4

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for axon-rag 0.4.4
File Size Uploaded
axon_rag-0.4.4.tar.gz 2.0 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for axon-rag 0.4.4
File
axon_rag-0.4.4-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
axon_rag-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
axon_rag-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
axon_rag-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
axon_rag-0.4.4-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
axon_rag-0.4.4-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
axon_rag-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
axon_rag-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
axon_rag-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
axon_rag-0.4.4-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
axon_rag-0.4.4-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
axon_rag-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
axon_rag-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
axon_rag-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
axon_rag-0.4.4-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
axon_rag-0.4.4-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
axon_rag-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
axon_rag-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
axon_rag-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
axon_rag-0.4.4-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 64.7 MB

Release files / axon_rag-0.4.4.tar.gz

Download URL axon_rag-0.4.4.tar.gz
Size 2.0 MB
Tags Source
SHA-256 checksum
How to use checksums
6e4db8aad931902481aa1dbc747c4f897175e2a173bb3fcb972b1b612871e56d
BLAKE2b-256 checksum
How to use checksums
2daf0b6442ef0dc8e61e553e7cbf405d5b5df4ca8e3e39e94ab4ecd9198aeac6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp313-cp313-win_amd64.whl

Download URL axon_rag-0.4.4-cp313-cp313-win_amd64.whl
Size 3.0 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
a22f945157cab169b418c6e6ac4e3b358bae3f886fcc22c91c1adc1bf55d61d3
BLAKE2b-256 checksum
How to use checksums
b4d00d0a4cabe37780fd180832f9661fa044de942655de4a39a8bc7c40b05821
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL axon_rag-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
062077625b0feab23b93e254aeb7b07d61d497d071827a93307cdc46a31f8bda
BLAKE2b-256 checksum
How to use checksums
4300400752075906c39cd5479e6ed775893964fe120a309816af97fae0980cdf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL axon_rag-0.4.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.2 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
da5e3c233fd5433b658f0346c4dee8e2f3acbf046806e61c8d8b33ec73025363
BLAKE2b-256 checksum
How to use checksums
6b0486489572057e33e9e71717ce4792ec09ad5bfe743f4b49629b4a42e1b8e5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL axon_rag-0.4.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 3.1 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4141ab0cb42dfd007bee2f56c8b6b977a28b99ef48ce54354737fed3c0293978
BLAKE2b-256 checksum
How to use checksums
832b5458341951e16318d2f794db14123f92448e4fb4a614dc35d503334709b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp313-cp313-macosx_11_0_arm64.whl

Download URL axon_rag-0.4.4-cp313-cp313-macosx_11_0_arm64.whl
Size 3.0 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9948a64408c42e196c1d4456260e7219fbeb6483f1c821e3d4c9fc84c8a3dfa6
BLAKE2b-256 checksum
How to use checksums
c87167edf5ef36644fd6a13f6e694ffdac22e287532b0b85f6740743d408325a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp312-cp312-win_amd64.whl

Download URL axon_rag-0.4.4-cp312-cp312-win_amd64.whl
Size 3.0 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
6b53c3f990a4303b17349650fa3544e34337c0a2466ff4c5f68203b292e6586a
BLAKE2b-256 checksum
How to use checksums
d9f7e95f6838545f2a02c4c61a9164ac397dbbdcca0b376b40d847e56f280b40
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL axon_rag-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
2c2cb14852854b6f3fb47ca2977bdda708069e9035e21305f14e1d59ab00056f
BLAKE2b-256 checksum
How to use checksums
183bba13e0ea7efaf4a1a5963d270ecdb24d3691b57f82fc85e6f23f2d72efce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL axon_rag-0.4.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.2 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5af363d9e2f1cd9a5a05e55622c97f4881e79e9a3aedfba4e03d27f827fda1fa
BLAKE2b-256 checksum
How to use checksums
42fdbe93ae6286b785882794cbdc6f83d8b6ebd3c47319b28b282b98913a5379
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL axon_rag-0.4.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 3.1 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b27940013716028949816c5e9c38863343627e631c2797370aa10b2126dc62a5
BLAKE2b-256 checksum
How to use checksums
e57a5dfdd56f796e68c8bfc50b675b811388e476a56dfde72a21d0d030c9c0b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp312-cp312-macosx_11_0_arm64.whl

Download URL axon_rag-0.4.4-cp312-cp312-macosx_11_0_arm64.whl
Size 3.0 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ccf9befe276b9608cf83d711e3b8613a96355669ab98e83bb435fb4f712a396e
BLAKE2b-256 checksum
How to use checksums
c02e56ff3b725f020c8325329130cfc58fbf69d6ea28a8d6579ad4cc7db873c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp311-cp311-win_amd64.whl

Download URL axon_rag-0.4.4-cp311-cp311-win_amd64.whl
Size 2.9 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
1e9a539203605d4e6be390a95c1f7b988d0eebcf72ce6e4d42ae479c209c7108
BLAKE2b-256 checksum
How to use checksums
75216003b4b550f93315d1af78c752eb21d50a2847adb2541f42e610c07952c4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL axon_rag-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
02342e30f372b160808c5687bc188cbc4a540f8dc8d7da736b0120b73ed24a3b
BLAKE2b-256 checksum
How to use checksums
fd33234d56dad19c15d43d013b07d04dbabcd1ac8e1798d026dda9a309fcbb23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL axon_rag-0.4.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.2 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ea1fe6271ea8e14ebb846681c23e25086649b997e2dbaeaf8ae6b7ede1777781
BLAKE2b-256 checksum
How to use checksums
13444ab1b3a4bb084cdb1d384dd5435b721062c5931ca232e9becf726f9ac270
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL axon_rag-0.4.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 3.1 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
20c3ee6b65b3d367e7d210685bc5612f61f9bb5b33ebc6b57f869c4c2a0251cb
BLAKE2b-256 checksum
How to use checksums
adc59d3c8465e525d01ef371faf7ba9573644a8c4201f28515c713f516fc8827
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp311-cp311-macosx_11_0_arm64.whl

Download URL axon_rag-0.4.4-cp311-cp311-macosx_11_0_arm64.whl
Size 3.0 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2566684762a39e5ed69ba4a558772f3efcc7dd05b09ddce4147a374cac84c987
BLAKE2b-256 checksum
How to use checksums
d09fca57c1f2e46a53f00911a14976708cb86c2d5a5de5b348f6ead20dd481b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp310-cp310-win_amd64.whl

Download URL axon_rag-0.4.4-cp310-cp310-win_amd64.whl
Size 3.0 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
53476c153749aca6d5fbf69d262c4ea907e56a9de4c0d6195181c833c055b53f
BLAKE2b-256 checksum
How to use checksums
738afbc9cc7d8bd593343a9cc98346a453602bc7c5c6966229c05cdb96248909
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL axon_rag-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl
Size 3.4 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
9d770854df3e8c824c6a63d87f53e3361d83a445f2606b88b00fde7742c57f85
BLAKE2b-256 checksum
How to use checksums
3e0f34e0b6df6f58550dcc412a2b2cba7f6a6b328976ff8c6065588d30ab4ace
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL axon_rag-0.4.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 3.2 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2e738205f3f192f0cf0b88c6eff3fabdfefb180a802166dde42cd6ed5ecfeff9
BLAKE2b-256 checksum
How to use checksums
f60e9e319f0aa1b28e44cae01cc985fd193b74b0ee7d337405c9de7fe4098a2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL axon_rag-0.4.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 3.1 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b7b026b9d4c9860ba356d0cc846eb3dd9d6f20bf443327a44b74ca3454b77e29
BLAKE2b-256 checksum
How to use checksums
25397a20022bc5c457dee90554e99bf041f9d557ab765e78e8a1ac711d4d5576
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release files / axon_rag-0.4.4-cp310-cp310-macosx_11_0_arm64.whl

Download URL axon_rag-0.4.4-cp310-cp310-macosx_11_0_arm64.whl
Size 3.0 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
72c713a8855bb554369bbb9ed46f8ff5f8802a35f9da9fed3f2283b80773b0b7
BLAKE2b-256 checksum
How to use checksums
82a6e476011784ae18307cc23682f130e822cf6241936da46b2e0d532c9f8c64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 31, 2026.

Transparency log

Release history Release notifications | RSS feed

0.4.5

21 release files

This release

0.4.4 This release

21 release files

0.4.2

21 release files

0.4.1

21 release files

0.3.1

21 release files

0.3.0

21 release files

0.2.1

21 release files

0.2.0

21 release files

0.1.0

2 release 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