Skip to main content

General-purpose open-source RAG engine with multi-LLM, hybrid retrieval, GraphRAG, and MCP support

Project description

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

๐Ÿค” 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 โ€” @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. Per-user permissions, full audit trail, no extra infrastructure.
  • ๐Ÿ•ธ๏ธ 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

  • 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

๐Ÿง  Graph Intelligence

  • RAPTOR โ€” hierarchical corpus summaries
  • GraphRAG โ€” entity/relation/community graph (local / global / hybrid)
  • Code Graph โ€” file/class/function graph with import edges
  • Interactive 3D graph โ€” embedded webview in VS Code, browser elsewhere

๐Ÿ“ฅ 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: OpenAI, Gemini, xAI Grok, GitHub Copilot (API)
  • 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

๐Ÿ›ก๏ธ Governance & Agents

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

โšก 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


๐Ÿš€ 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

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 31 tools appear in the agent hammer menu automatically.

The VS Code extension surfaces 35 LM tools to Copilot Chat (a superset of the 31 MCP tools, adding VS Codeโ€“specific helpers like show_graph).

Full setup guide โ†’


๐Ÿ“š 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 31 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
๐Ÿ“Š 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 Single-package PyPI release with optional Rust acceleration

๐Ÿ”’ 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

axon_rag-0.2.1.tar.gz (1.7 MB view details)

Uploaded Source

Built Distributions

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

axon_rag-0.2.1-cp313-cp313-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.13Windows x86-64

axon_rag-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

axon_rag-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

axon_rag-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

axon_rag-0.2.1-cp313-cp313-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

axon_rag-0.2.1-cp312-cp312-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.12Windows x86-64

axon_rag-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

axon_rag-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

axon_rag-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

axon_rag-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

axon_rag-0.2.1-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

axon_rag-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

axon_rag-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

axon_rag-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

axon_rag-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

axon_rag-0.2.1-cp310-cp310-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.10Windows x86-64

axon_rag-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

axon_rag-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

axon_rag-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

axon_rag-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file axon_rag-0.2.1.tar.gz.

File metadata

  • Download URL: axon_rag-0.2.1.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for axon_rag-0.2.1.tar.gz
Algorithm Hash digest
SHA256 43b27f5e72100d6a82cfc9f2aa5e8f616ed9e7bf73916289306f0cfc832259b6
MD5 7cc8603b80fd73d29d5f39860ab0b3c8
BLAKE2b-256 55dbe7f8e73e765025aa2738a3c97c07777079757d37ea54c164ebc3c266c629

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1.tar.gz:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: axon_rag-0.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.7 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

Hashes for axon_rag-0.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1d4e7463177fce20fcc0f7aaea22b1830a06f9bb010551fe0220d119c1c44eaf
MD5 b0ee6f32bd8a783ef9d7ea79eed79d71
BLAKE2b-256 452b88839925536fa53fd8eebfa82830eb4b9f2d1de937093a999f8cf20d3955

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3cd090bb64abfb67d72768b82716b91696b166ac8f122d2b24f890dd3f85b1c
MD5 5994a8aef068e7598208ebd9475bd5f9
BLAKE2b-256 c15a89040aade5b64db9920b02f871c2744ffcfbddcc8cfe797b9fcbbf8fd73d

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 744f05ac071f1db7513e0b6dec6bb956d382ff884b8e2242e70a840d4811cc91
MD5 82627e0f359f3a890b879c5207e5e96d
BLAKE2b-256 a82b8781d3a6ce778038f06f3debe2ecd31d73ef5bfc99b9e930df06b845cc84

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7a65e5891e77b3d106899c0578eb5d0b0e98efcdae013cac9657b4e3935df4f
MD5 96edc79f6f2c981348de57f0f7147230
BLAKE2b-256 fef19cd00938b002d9641267a3143f7f5ccee0def55b100450eae2ac222fab8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e3705eeb3f8ba2b245e6f9b8bda51d6a5f984af157a35d6400690d8404ab42e
MD5 ba7bff634ba8d9b84a821d047d1fefb8
BLAKE2b-256 d6c6a178fe00d396faddf3b53173770a688ea2e41549e8e0161d0d49ac9223ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: axon_rag-0.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.7 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

Hashes for axon_rag-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6e121d4b734da323ce1adadfe9163b81593f2155d391a795fd6308bc0fa4de01
MD5 5452be308b5180eeca70d32cf379afed
BLAKE2b-256 272ad292d7f0e6a112bad82802ed29b42d9df7c3402fad6924e40ec49854ef60

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9cb63f1413a4bb1e8a34afbcfd004982b6f635358f00b9dfefaccc09246c94f
MD5 0c36c31126af63f67b4b9a745137066e
BLAKE2b-256 fbadabaca6e3ac92d9f418e4897279cd1fe1da49ae16eb9c416c1374d58518d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab809f95870d01090bb772c17387d25c5c191baff273de1fbb28b429d4ae1d0c
MD5 fbb458b3d2e3846f042a5ec7ad0e9443
BLAKE2b-256 48e754d1d206b0b0806f48d55442f74e220705215a86bdb86c8f4c6c9b72a757

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4bd995709ba2e137aa2a386c3ac8cf1adc4fca71e4a3e6b22a077d0be094889
MD5 f4ba36ec803bb9db7a8d9b08aa2b5726
BLAKE2b-256 0344215699bfcb3895d747ea3ed01b67f6d404979c35fe82a4450f59d2f385c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d8447d03fafd8d3df8d890c61d1e944d66ef89fd039f07dfacc6d80bf143878
MD5 5c4e6be9e9ef92ee4368b30cbe8cef4c
BLAKE2b-256 498df75369b22718ab5577022267d6e9130ff329aecb046a15e8f51d9b379f1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: axon_rag-0.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.7 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

Hashes for axon_rag-0.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 79e5b078d8ec64f734dea9d4d864445a5e87ecdbf27f72cfb02cad0ce4c8bc1e
MD5 0476085f65861d795c30004920e52c8e
BLAKE2b-256 ddfc0e9ee0df758e8e25bc2bf4a0837c8b7c0003c3aad6b536b20aaa6df72b7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e2d49f417a7a802a0d848fcdacff7164fed72b9d78415cde3a918a2e15f8e42f
MD5 41aa931116a81c7c2485676ac2d658bc
BLAKE2b-256 4f01c31075845fbdeeca8660597083e1dfe7768743c120875f596bfa53c5b649

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a94ab53ced05dc523d764e437cda9d440c1dd20c7541be3403f761a2ef578114
MD5 ee47cc0bbca92e4e77d3f05e7b9623d3
BLAKE2b-256 fef930713a2ad1d0ef2179be39abbd7b7deafe9b221cb8ca5cf7689c4aa8653f

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed05c30f6fd284c5e86aa47e78ca27454658095560ba088fb9057eee9ff0b914
MD5 bceef2845c4ba69193a2a6ea567deea6
BLAKE2b-256 e3ca937bd343eda83fac2aacebeb7989df61fe75edee44650097b877660b16db

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97865cbaee9473f920941442b4226e1ad5ba5c4f10cda4525ab89967570fba9c
MD5 02a71abef7ed7e9791da92630922e885
BLAKE2b-256 3279a45c470242d81fe1161da4325fb27ae4bc53cd2cbfa9f2c0107bd0563744

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: axon_rag-0.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.7 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

Hashes for axon_rag-0.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 125db5aa22ce3c5adc8ff762c31878e66553ac79b32dd6f6291f3573358c02fa
MD5 0a161b70d1bdd7c20158238da0eb7336
BLAKE2b-256 047374b5f1882ca7458efad1b1a82813c257348bbf06d83c42bd6b0385da4f00

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4d344c4ed2e3681cecdb2a84e4b558125d4caf154ac7d7ee3ba2f56f9cf4c39
MD5 d312bc871bd16addc8bc29640cf2cbed
BLAKE2b-256 8b38aca2b2c0628b8a4dcbf9e4b0b5b61101e66df85b4c807e2f075ebf1e8ed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eff14f90363ffd4b0fb361b67bf2c51b7d16f1c788d8a6ebbcc595c75a0db93e
MD5 d1dd8bedc77c5e3dcbbd1f19c1fdcee8
BLAKE2b-256 f2b0e5eea7e1cb3a6a7c7973817eaabfaf358a60adc8114c97649389e7633614

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8f5c96caae79d617d50f1242a2803a38befe83fb7922523b915bbbd1898c969
MD5 3b72e1196690cd9661ec830f9f19d9e3
BLAKE2b-256 08f0df6ec9eb180f16425ce6587efeac9b09efb18388b7a888f3de686ce04c40

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file axon_rag-0.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07ca046279ec97ad8fe9fe0d751006acd447cdbbabec7ac210adc43486500e83
MD5 d7f84b1187e643cac57b9a2cad35aa5f
BLAKE2b-256 1facff761dea5147587c8bf14a3bf26a93b3e8e7bc034813d5e623e2a5d265ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.2.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on jyunming/Axon

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page