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.5

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.5
File Size Uploaded
axon_rag-0.4.5.tar.gz 2.0 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for axon-rag 0.4.5
File
axon_rag-0.4.5-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
axon_rag-0.4.5-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.5-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.5-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.5-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
axon_rag-0.4.5-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
axon_rag-0.4.5-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.5-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.5-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.5-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
axon_rag-0.4.5-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
axon_rag-0.4.5-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.5-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.5-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.5-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
axon_rag-0.4.5-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
axon_rag-0.4.5-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.5-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.5-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.5-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details

Total release size: 64.8 MB

Release files / axon_rag-0.4.5.tar.gz

Download URL axon_rag-0.4.5.tar.gz
Size 2.0 MB
Tags Source
SHA-256 checksum
How to use checksums
9e298dcccd1377de48c0edb56127f6dc42e3eafc5f390c96ca74f48ca5ecd506
BLAKE2b-256 checksum
How to use checksums
df41a7dac5c711b79c084013882b7b47ca31d9d1da4eed60f918fb0be023ec9d
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.5-cp313-cp313-win_amd64.whl

Download URL axon_rag-0.4.5-cp313-cp313-win_amd64.whl
Size 3.0 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
0659a245cdca91336f2f45c6d97a71ab8853297bd224170abe6c7c2372f858d7
BLAKE2b-256 checksum
How to use checksums
1f0b0a768c4f1e4723d4763c8505a3cd96d702d64d3f4f5ada5211d9e1ef8eb4
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.5-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL axon_rag-0.4.5-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
10b663aadd964fc1ec119a4bfcb330516b04dfe4c4292e360fa7bc9e3662ffd4
BLAKE2b-256 checksum
How to use checksums
e9dec93c418787c566a552eaf5c70808cc6914f1e6d462801f1a9c995cf4718b
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.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL axon_rag-0.4.5-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
4dbf22c176d3c4367707d52218a77890198238fdf03df842bd873113e9b68381
BLAKE2b-256 checksum
How to use checksums
9372e1d8193b6567bb60d14dde3ba566a39c7cde7d2fe17c5d8964e568387577
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.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL axon_rag-0.4.5-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
cde96d97ae17f1c9548a952490f3a35e16c29b4243f55e7a51d77c2461b0d7fa
BLAKE2b-256 checksum
How to use checksums
444afba88dc88258d99ea36e6f04595982a563fc8a41ef108166d707b9b1a87d
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.5-cp313-cp313-macosx_11_0_arm64.whl

Download URL axon_rag-0.4.5-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
22ae7d19bd03ce4c20992c80dae77b6b362ca9c5592c3e7c8371cc0688daf22a
BLAKE2b-256 checksum
How to use checksums
6d4e2d43f4a8f939ea8e3984c6b5836b16d6dc040d5e326de5b5c91d21482977
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.5-cp312-cp312-win_amd64.whl

Download URL axon_rag-0.4.5-cp312-cp312-win_amd64.whl
Size 3.0 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
f65311dd6533719c527fa912f49f81e6c06aa20281573c38ca7140fae609331b
BLAKE2b-256 checksum
How to use checksums
8b8b466a0176855459ad3774210524705ea9f8f5fcfb1497061427e307998f84
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.5-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL axon_rag-0.4.5-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
0f7d0398ca47efdef390a6854cdaeb3f03c00fd0753695c9648ddc877944808e
BLAKE2b-256 checksum
How to use checksums
36a530e6b2134b5aba42bb1273d98323723b2b6ab0bb3d866f194c9ad3c204d2
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.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL axon_rag-0.4.5-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
5aecf30381a11de679f7f64e6c16d041f20fb44d7afeb4bf6844e890e455617c
BLAKE2b-256 checksum
How to use checksums
67e4edf41782bfbdf94030fbfe455e3bff67fe3355eef174401b5b09096e6d7d
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.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL axon_rag-0.4.5-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
b325eed7799526b0cebcfb3b3847b8dab355c60615925941a743139086eab443
BLAKE2b-256 checksum
How to use checksums
8c434a6a0b6558365062b649eed1fb94c564b7c11a685c0eda5da99557756b81
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.5-cp312-cp312-macosx_11_0_arm64.whl

Download URL axon_rag-0.4.5-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
577a7101334249c8c096e96a01e6ad4230ac502edd79ed4aac520b88998257b7
BLAKE2b-256 checksum
How to use checksums
8e86ddb30fce1f1c8ea07e267230ac817e6df112baee38b9fecbafcf8764d666
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.5-cp311-cp311-win_amd64.whl

Download URL axon_rag-0.4.5-cp311-cp311-win_amd64.whl
Size 3.0 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
f8f07c7b2e29a48ddccc1be1872f54bce76db35ec243a9240e7835d98b5727d6
BLAKE2b-256 checksum
How to use checksums
464bc5df315c9f7f1b430c2bdf8c42e74c9bf2961d6fdeb4eea7835207977791
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.5-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL axon_rag-0.4.5-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
e4599c243e169588f2e1f17fa593016cf7a60772cf0dd2ae00805c545128cec3
BLAKE2b-256 checksum
How to use checksums
54d4443677ca5e9d5954264d81a0be87b68cad4aa3224ebfa7c3332501d6e5af
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.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL axon_rag-0.4.5-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
25d531ffd4f0db7a20a5950ed6203005b09c098abcf5344fd9950825a67656b7
BLAKE2b-256 checksum
How to use checksums
c89fe072186546c09e3fb8f5421c2d94e267aa4b880d0b604ae2894fbe1ea01d
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.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL axon_rag-0.4.5-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
3bbe514dee57ca3c84b0aabdd537355937f2986db4cc0b23725ee19a4aa1cba3
BLAKE2b-256 checksum
How to use checksums
3fe8b4d9591b46b1afd8eb1d7a665343d743ad1cc23f84b1c41e2dd859ed82fd
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.5-cp311-cp311-macosx_11_0_arm64.whl

Download URL axon_rag-0.4.5-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
d450e43617f8cb5cd4303e946425246d5139c8755decdf73f849b7185fbe0602
BLAKE2b-256 checksum
How to use checksums
4cde205e6bb973e326ea6ef1e72771f648ac4738ca5173504f412f2ae0407579
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.5-cp310-cp310-win_amd64.whl

Download URL axon_rag-0.4.5-cp310-cp310-win_amd64.whl
Size 3.0 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
07bbf499fa128e6c8f703628d874c12740b3a237c79f0d87e202ea4a19f260bd
BLAKE2b-256 checksum
How to use checksums
bb1efc83d6b080013b9d439b563cc53c0678c335599dbf515905f7d1ef2c1583
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.5-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL axon_rag-0.4.5-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
9227d25311250158593d4ad8fe38d0730f9b1d6a60f33c46643d8a5b7a56e82e
BLAKE2b-256 checksum
How to use checksums
4cd2b641b5e681f2f78105c8580e3dc60522ba8965e800f865cbb3f0dfd4530b
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.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL axon_rag-0.4.5-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
255e8a5a5a92dfaa57155523f5bc7deb65dc8e475a1add97ec21cd88c785194c
BLAKE2b-256 checksum
How to use checksums
ebe1c4c5852a391b072e8b2ef676e83f718b4d95a55180f03601590cccc15edb
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.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL axon_rag-0.4.5-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
432563f32ba80593e86cfbc73b747a84f2ab6e64e2dc823f078783f85daaeeb0
BLAKE2b-256 checksum
How to use checksums
b0746ab3a535ab6bd3189951fd18410b9833f35212f3df6bfe90ed8f8ad3e481
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.5-cp310-cp310-macosx_11_0_arm64.whl

Download URL axon_rag-0.4.5-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
3cff52ef65001e682661f06cdb0f2cb209c471b4a46586018471f9149a13512b
BLAKE2b-256 checksum
How to use checksums
994535b212541b290406836c70d43f9c1a59f0e295f600f77413f6463c7a5791
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

This release

0.4.5 This release

21 release files

0.4.4

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