General-purpose open-source RAG engine with multi-LLM, hybrid retrieval, GraphRAG, and MCP support
Project description
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 runs entirely on your hardware โ full capability, zero egress.
- ๐ Private by default โ all inference runs locally via Ollama or vLLM. No API key, no upload, no telemetry.
- ๐ 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 jump to the exact source line.
- ๐ฌ Production-grade retrieval โ hybrid search, reranking, HyDE, multi-query expansion, and automatic web fallback. Zero manual tuning.
โจ Capabilities
๐ Retrieval
|
๐ง Graph Intelligence
|
๐ฅ Ingest Everything
|
๐ง LLMs & Embeddings
|
๐๏ธ Projects & Privacy
|
โ๏ธ Cloud-Drive SharingSealed (AES-256-GCM encrypted) sharing works through any cloud sync drive. Files are ciphertext on disk โ cloud providers see only encrypted bytes.
โ Sharing Guide | Quick Setup โ |
๐ก๏ธ Governance & Agents
|
โก Quick Start
pip install axon-rag # requires Python 3.10+
axon # launches the interactive REPL
Local inference uses Ollama. Cloud providers (OpenAI, Gemini, Grok, vLLM, GitHub Copilot) work via API keys.
โ Full installation guide with VS Code, MCP, and cloud provider setup
๐ 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 | 8000 |
Agents, scripts, CI pipelines |
axon-mcp |
MCP stdio server | โ | Any MCP-compatible agent (Claude Code, Codex, Gemini CLI, Cursor, Copilotโฆ) |
axon-ui |
Streamlit UI | 8501 |
Browser-based exploration |
๐ 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 46 tools appear in the agent hammer menu automatically.
The VS Code extension surfaces 35 LM tools to Copilot Chat, covering core RAG operations, sealed-store security, sharing, and governance.
๐ 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 46 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.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file axon_rag-0.3.0.tar.gz.
File metadata
- Download URL: axon_rag-0.3.0.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3988f1ee697d0ba498c83a5077963a10206b674c778c2380d4e6ec091c3ed641
|
|
| MD5 |
4ae810736da2afd7036fcc7400e873bf
|
|
| BLAKE2b-256 |
f9b7b72ea8d36fb7b7d8d915c0b38643a0bdd3ed13c40c292a8835b9671350dd
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0.tar.gz:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0.tar.gz -
Subject digest:
3988f1ee697d0ba498c83a5077963a10206b674c778c2380d4e6ec091c3ed641 - Sigstore transparency entry: 1396327233
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3ed7969c5bc8e563b10db3de3f3324efd8444300018838f6f15871bc12cbfa27
|
|
| MD5 |
8afdc55d31040a1938be4de609229b87
|
|
| BLAKE2b-256 |
ff7800f756f188b0e04956edf54eec1b07c6b646c6d9dc6008e7e5175b410dec
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp313-cp313-win_amd64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp313-cp313-win_amd64.whl -
Subject digest:
3ed7969c5bc8e563b10db3de3f3324efd8444300018838f6f15871bc12cbfa27 - Sigstore transparency entry: 1396327339
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d0c1fb98e922b99cafe7aa08c4cd28639e0ae27f3539f86127078c4746393aef
|
|
| MD5 |
84bfacc6fe002e39e8b14e5a8ac2b8b8
|
|
| BLAKE2b-256 |
da376ab7f4d4cdeb3345a23df6eaf5e023d9f5796497663f342702a2e6f75de4
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
d0c1fb98e922b99cafe7aa08c4cd28639e0ae27f3539f86127078c4746393aef - Sigstore transparency entry: 1396327244
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfa0586eb9f262def0c4860706bdfb5992f3372d26fa24169f00eb565774bab2
|
|
| MD5 |
11daade245af0f81c581654216332004
|
|
| BLAKE2b-256 |
abd0c0a5f9bf2915aa9136bccb5261d7050dcc2fb2e468987ce878896d0a7326
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
cfa0586eb9f262def0c4860706bdfb5992f3372d26fa24169f00eb565774bab2 - Sigstore transparency entry: 1396327322
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
13110864e6885215ec8e26c16343d03a30e22862e484ca1c133bb82924874849
|
|
| MD5 |
5bb4a714e941df99ea5b9f5b2f577042
|
|
| BLAKE2b-256 |
7f00fd0a262543bb6809dcda6cc4355a6ee886c989c70c3e7ee9fe8005d6bff3
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
13110864e6885215ec8e26c16343d03a30e22862e484ca1c133bb82924874849 - Sigstore transparency entry: 1396327348
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
154ba1473c5697db7ed61f370d06bddafd79fd894e582883a1898f2e900c47b3
|
|
| MD5 |
c96764c8336c052f5f336802b97cefb7
|
|
| BLAKE2b-256 |
3b9a735c39fd76317655341b79042d14592e0be7d9d401619ae632f8b62274ed
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
154ba1473c5697db7ed61f370d06bddafd79fd894e582883a1898f2e900c47b3 - Sigstore transparency entry: 1396327309
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7336da8f7b72b63650a5d78d87d71d2cb3c404ef642a032938f16530eccb9c9f
|
|
| MD5 |
0016d75ac67866590deba2928cf3ec1a
|
|
| BLAKE2b-256 |
d1c058c4b18182c3dee36a0e238d3fa0e7d5e111f8ca0ed840a47c3e8c6c21c4
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp312-cp312-win_amd64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp312-cp312-win_amd64.whl -
Subject digest:
7336da8f7b72b63650a5d78d87d71d2cb3c404ef642a032938f16530eccb9c9f - Sigstore transparency entry: 1396327445
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e74784191f05480f6b263cc7952ca56bbdacc1442856d6535a064b1193f8c3c
|
|
| MD5 |
3fe0095a33262b9b64cca23d41083e02
|
|
| BLAKE2b-256 |
d73b32e96250141472fd7ccb26da301da6de677d0d219c2ad54429661c29a7ad
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
7e74784191f05480f6b263cc7952ca56bbdacc1442856d6535a064b1193f8c3c - Sigstore transparency entry: 1396327443
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff6a9c92fdfa39bfe68802f786ac1263a5de554030f1f291e1d60f66d05422ec
|
|
| MD5 |
93d330718310b42d1d19ea9b2211862b
|
|
| BLAKE2b-256 |
5260019708668bac36f866a912159ea9098a16905ae045525c931f2d461a733e
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ff6a9c92fdfa39bfe68802f786ac1263a5de554030f1f291e1d60f66d05422ec - Sigstore transparency entry: 1396327358
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00ab0373c908c90308950e4f90691f50ddd95d0ab14207d9e42e84eaee269337
|
|
| MD5 |
41a4858f64cff9aee1ad81553c3260c5
|
|
| BLAKE2b-256 |
76a335806548ff8e93d90373f8d6ee9f9a840f83daee536548fc14336e387ac6
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
00ab0373c908c90308950e4f90691f50ddd95d0ab14207d9e42e84eaee269337 - Sigstore transparency entry: 1396327330
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cf1682d3ecf20b2ce7b124d71bd8322070b4ee8f75e30b3a04247c56447f390
|
|
| MD5 |
2dc827d32f307891d3cdd14b46994368
|
|
| BLAKE2b-256 |
1f1a6bb95b61b2bbaecc99ae72ecb68ad0eccac13108d85c0ee9694ab543dc7b
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
4cf1682d3ecf20b2ce7b124d71bd8322070b4ee8f75e30b3a04247c56447f390 - Sigstore transparency entry: 1396327253
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48643004505d8121c63dfbeb5a649fa09e524293d8eb18a58ca64592536863b8
|
|
| MD5 |
cc44a28d16677ce969e87ec7c383d5da
|
|
| BLAKE2b-256 |
4dee66f1df8d40139663385baf39a455882b1247cfdf58b507c8e593ec36b02c
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp311-cp311-win_amd64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp311-cp311-win_amd64.whl -
Subject digest:
48643004505d8121c63dfbeb5a649fa09e524293d8eb18a58ca64592536863b8 - Sigstore transparency entry: 1396327287
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
168ac06321f013a8f81dfa676c2c786dab8d8e07ac7baeb921a280e66b77eda5
|
|
| MD5 |
083deff08ba3f63138997a69478917e7
|
|
| BLAKE2b-256 |
c1eb338b0d14ae2bdff476e461ea22364f493f1cc998a551ac57b3afc6d0adc1
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
168ac06321f013a8f81dfa676c2c786dab8d8e07ac7baeb921a280e66b77eda5 - Sigstore transparency entry: 1396327391
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fe7531af7602d23f7d7566ac38bf55fa8512c1fe819f46208dd4c18b7f37d54
|
|
| MD5 |
1febade5306b4dbec22b80495dc16b98
|
|
| BLAKE2b-256 |
c43b3947d95bb6c1620ff8cf00e0b2625ebaeac9c282ec0ef44d9b8a7f94a288
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
8fe7531af7602d23f7d7566ac38bf55fa8512c1fe819f46208dd4c18b7f37d54 - Sigstore transparency entry: 1396327460
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2219140cd68e130b1b4831788b0d88db8fbc9af1f9bf39b452bb7de1799f66f5
|
|
| MD5 |
cc6c40098cc06dc709294ac08cb27ce4
|
|
| BLAKE2b-256 |
985607e52815d5f3a431edf180ff9db8dba94ebec6e2de0a78baca197d66d383
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
2219140cd68e130b1b4831788b0d88db8fbc9af1f9bf39b452bb7de1799f66f5 - Sigstore transparency entry: 1396327264
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2caad8e7b35a2c50412434b648d5452d10bb817442ebaca57861f94635e8d7df
|
|
| MD5 |
f5e626eec6b134d1386d872fa9880323
|
|
| BLAKE2b-256 |
838010006ae0b699b4dfec73c8d9f921d6bba64f6eb2f55b42ce9c56902ba4ae
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
2caad8e7b35a2c50412434b648d5452d10bb817442ebaca57861f94635e8d7df - Sigstore transparency entry: 1396327352
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
238e9dd98a5a3ec919f6920d5299d1cdd330196f785eb2431f97753e8650cdf7
|
|
| MD5 |
d4a42bb3b4969ddd4fb92351c15a8ff4
|
|
| BLAKE2b-256 |
e950b325e3e67799c83c697f3cef9415e02823250783a1f2f899ab94163edd08
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp310-cp310-win_amd64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp310-cp310-win_amd64.whl -
Subject digest:
238e9dd98a5a3ec919f6920d5299d1cdd330196f785eb2431f97753e8650cdf7 - Sigstore transparency entry: 1396327296
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 3.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0507363df987bb5c1a14e1d7a63415c1248217dcd0d4d87dc550d52fc04ecdef
|
|
| MD5 |
cf778f4b1a2532e19aaf28c1b5568a62
|
|
| BLAKE2b-256 |
b880bdc78d11bd44227a66e2ccb552326f7c81162181ee1ccf77241e7399247f
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
0507363df987bb5c1a14e1d7a63415c1248217dcd0d4d87dc550d52fc04ecdef - Sigstore transparency entry: 1396327422
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e225cc01a62925d1d873bd67e617fb598b0a671543dbd2d07710879cf944d6fb
|
|
| MD5 |
d27a82e937708683713c2625237b600f
|
|
| BLAKE2b-256 |
a667e406b2d80f0dfd5b9837f45feaff7d2d21bdcdaa697999db223d3897ce15
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
e225cc01a62925d1d873bd67e617fb598b0a671543dbd2d07710879cf944d6fb - Sigstore transparency entry: 1396327396
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dd87f21618d0d5420d999b268fe190019c3d29c99d95eaebe74ef2da3c3b0f6
|
|
| MD5 |
82e2b33f28ef2c0389bb879f9f74f906
|
|
| BLAKE2b-256 |
e3a99bedf16aab0dedd5d97826aae6f34d9fec448b8ebcde1ad7bf7c221ecc8f
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
9dd87f21618d0d5420d999b268fe190019c3d29c99d95eaebe74ef2da3c3b0f6 - Sigstore transparency entry: 1396327272
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type:
File details
Details for the file axon_rag-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: axon_rag-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 2.8 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e29ba73744c560487de5ca2555f5a1070cd9a131c68342c1905ee227d6c2408a
|
|
| MD5 |
b0653fa1f64bf2942914b9c9e9253e03
|
|
| BLAKE2b-256 |
1a92e160b9577bb37e2e559de48027ecfefdb700306e9365cb537149686fbaea
|
Provenance
The following attestation bundles were made for axon_rag-0.3.0-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
release.yml on jyunming/Axon
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
axon_rag-0.3.0-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
e29ba73744c560487de5ca2555f5a1070cd9a131c68342c1905ee227d6c2408a - Sigstore transparency entry: 1396327450
- Sigstore integration time:
-
Permalink:
jyunming/Axon@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Branch / Tag:
refs/tags/v0.3.0 - Owner: https://github.com/jyunming
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@55eccbdd2f737f8e823965bfcbeaeb05907e043e -
Trigger Event:
push
-
Statement type: