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.
🤔 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 —
@axonin 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
⚡ 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
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 withpip install "axon-rag[ui]"if you still need it.
Single-instance routing. If an
axon-apiserver is already running, theaxonCLI detects it (a quick/health/readyprobe) and routes store-mutating commands —--ingestand 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--localto force an in-process brain, or point the CLI at a specific server with theAXON_API_BASEenvironment variable (or theapi_host/api_portconfig fields).Relatedly,
axon-apiitself refuses to start a second server on a store anotheraxon-apiis already serving (one writer per store) — setAXON_ALLOW_MULTIPLE_SERVERS=1if you really want two.
🔌 VS Code + GitHub Copilot
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.
🐍 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.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| axon_rag-0.4.6.tar.gz | 2.0 MB | Details |
Built distributions (wheels)
Total release size: 64.9 MB
Release files / axon_rag-0.4.6.tar.gz
| Download URL | axon_rag-0.4.6.tar.gz |
|---|---|
| Size | 2.0 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
bad36b000e6faedab496b348e22c7f3e70158a146c161ce6d45fc92332b0b59d
|
|
BLAKE2b-256 checksum How to use checksums |
45a4ddbce2a9012098fd2195c022d3aef25866645e31c55222a5865051454575
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp313-cp313-win_amd64.whl
| Download URL | axon_rag-0.4.6-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 3.0 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
16c4b8398f7b7e76e1273a16d5cd5aa4899a5cd0bb5a212efe4ebb68a539447a
|
|
BLAKE2b-256 checksum How to use checksums |
160814877802f539a92351d6ac5823faf5cd1c58ce00d7354ce2f81d6a776c75
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp313-cp313-musllinux_1_2_x86_64.whl
| Download URL | axon_rag-0.4.6-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 |
a8171b394f89776bbaec6d3672647c1ad88a61c42862210d00cabc89e751e562
|
|
BLAKE2b-256 checksum How to use checksums |
8c803455d482a2811f9a9e57ad3ada51d915537c01fb6bfe9613598a56dab10d
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | axon_rag-0.4.6-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 |
4c676da2a2e2f8ff1e1ab32f99ff8139096a6fcacce0a74bf51eddb83462a35e
|
|
BLAKE2b-256 checksum How to use checksums |
9545e2a3f1f78f2ed75ce2c3a47354a9043bfff7541d67e3bd677f38c9b02d71
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | axon_rag-0.4.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.13 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
e3f8b4233a00bf1b15710725f979fa9fe3f199b9304edd1a12196d3eb84d653d
|
|
BLAKE2b-256 checksum How to use checksums |
f2bf9fb5de94cf9e0504962784878bdf4c3cfbc69a784ed41ccc5564f0e0de8c
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | axon_rag-0.4.6-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 |
4b17038462b56981ebed2810c1694a742fb508d6e95d3b3a5756d9672e07e5ba
|
|
BLAKE2b-256 checksum How to use checksums |
ab2c569ebc55ae76f7e7017fef7d8558fede321c395e2dbc445ff48ee896c29c
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp312-cp312-win_amd64.whl
| Download URL | axon_rag-0.4.6-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 3.0 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
9590b577b3c0a8c84368a54f96e3bf72e13635e7dbc2c88eae438f2fde4f058d
|
|
BLAKE2b-256 checksum How to use checksums |
405c4e5aceb438cd2947401f51b400b510188d0d5d609a37af2dd77aa252badb
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp312-cp312-musllinux_1_2_x86_64.whl
| Download URL | axon_rag-0.4.6-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 |
e8c4a39dc1623923f75e946d346e14adca26f53ce9295c29a1f4956321805d48
|
|
BLAKE2b-256 checksum How to use checksums |
fc54d4e49e419d47123fbb5e920f8766eeca34466f74054ce26f40bcc5ab6803
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | axon_rag-0.4.6-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 |
69bd01666556d4b3fd4c488f8601809c7b8b70618b1bd78b53f5b5d6540415f0
|
|
BLAKE2b-256 checksum How to use checksums |
378469bfb0b24d0e4037d36e69bfda419c34af980add72f608acb34a0c238844
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | axon_rag-0.4.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.12 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
40e8bf390dbfc31e218c1ad5434f5daa82e7b13491f3aae1ba4efe4e78edfab1
|
|
BLAKE2b-256 checksum How to use checksums |
f4029f0952e62dbb30ec1c78344407bf560a2a2056d2190cf30c3abe1b0569fc
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | axon_rag-0.4.6-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 |
c3dfa25df7e84250d6093a0168bc55bd1d0b5f3caeb59e3930c8596c7477a42d
|
|
BLAKE2b-256 checksum How to use checksums |
d9836740872f3d6766042f9206b83d3ee9d94542ba4b934fc85c984bfa9cf4d9
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp311-cp311-win_amd64.whl
| Download URL | axon_rag-0.4.6-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 3.0 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
f9b03f26edf22dd0cebe0d02a59975017b82151746e19679a0ab2ad3bff6e659
|
|
BLAKE2b-256 checksum How to use checksums |
0ec6ef629f76fe793dd59db6ef39fcda90c3510956cbf4a62c60765355c3f14f
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp311-cp311-musllinux_1_2_x86_64.whl
| Download URL | axon_rag-0.4.6-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 |
722e11d3f4b8ff45d9c15ec373b26e96a4ef1908e80e3a028e848f6d5efb9e7d
|
|
BLAKE2b-256 checksum How to use checksums |
7cc966f872ae8b27dc8f609417e2025f362f4e12187312ec528eb469c94e915a
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | axon_rag-0.4.6-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 |
cd5a5c3d1db5b4e6ea6ad18ad3516add4f916375d9ce9f2a65a7cb3a3b0772b2
|
|
BLAKE2b-256 checksum How to use checksums |
ab2e7239d15bf9f69f8aab082f50d72911825f769c6593681f67eb7bfa292297
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | axon_rag-0.4.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.11 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
954e7a694d7de3ff4535bcb4cdbc770ea69707223121ad446c7fc3cc97356cd4
|
|
BLAKE2b-256 checksum How to use checksums |
a23ec1b064baaeff1bf1945aa56db72ebb81771b522850a87527ba257fa612b7
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | axon_rag-0.4.6-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 |
e67bad57e9079f25c314f1d98f2ece251a1c96ec98e5b0de5a3834d1dbe98312
|
|
BLAKE2b-256 checksum How to use checksums |
7e1fc8ef672e49edcd625e3ab23649ec57e0f2bed8325ce228675b1333b2a286
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp310-cp310-win_amd64.whl
| Download URL | axon_rag-0.4.6-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 3.0 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
61860a52a5ac8c3dd67f6bbf7e6b295e56c10292836628727834124ca1b64b41
|
|
BLAKE2b-256 checksum How to use checksums |
9358cdbfafb70f0ff27b8b16120918c37efc351d2f49f7f0c819a6d263ceb3dc
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp310-cp310-musllinux_1_2_x86_64.whl
| Download URL | axon_rag-0.4.6-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 |
c102ec530b999b9f93fc92346c1488793af0e53a6b6b968f8d4bc3f38a732558
|
|
BLAKE2b-256 checksum How to use checksums |
62681a55c633c2d6b3ae95b6fbd8b333ff3a26501801b36487d859eaab606464
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
| Download URL | axon_rag-0.4.6-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 |
830f62b2dcd9b4157fe3d2d6385baf9a7ca77572292b3ccf575a2328186a29b5
|
|
BLAKE2b-256 checksum How to use checksums |
a38638ab0cc1a29809bbc124ae3a6788d551a7212a20726c4349355244acab50
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
| Download URL | axon_rag-0.4.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl |
|---|---|
| Size | 3.2 MB |
| Tags | CPython 3.10 Linux glibc 2.17+ ARM64 |
|
SHA-256 checksum How to use checksums |
de5850d487f3c7e0fb0d67bee8ecb7c5d5fd9b33b28044704acb851c640f0577
|
|
BLAKE2b-256 checksum How to use checksums |
c5ca715c7d6c5fbe96fa22dad33bca634720664cec4cbf71ad1b609290586231
|
| 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 Sep 1, 2026.
Transparency logRelease files / axon_rag-0.4.6-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | axon_rag-0.4.6-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 |
122f3563644846eab34ecbbde277f10120ba26afba68cf7ac95d554c5f522e49
|
|
BLAKE2b-256 checksum How to use checksums |
a4c0e3956b8b5b67184630ec1d0db5d59f9f464fe070a08e7764606f23e956a8
|
| 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 Sep 1, 2026.
Transparency log