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

  • 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

โ˜๏ธ 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 โ€” 68 endpoints with Swagger docs at /docs
  • MCP server โ€” 46 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


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

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

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

axon_rag-0.3.1.tar.gz (1.8 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.3.1-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

axon_rag-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

axon_rag-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

axon_rag-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

axon_rag-0.3.1-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

axon_rag-0.3.1-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

axon_rag-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

axon_rag-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

axon_rag-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

axon_rag-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

axon_rag-0.3.1-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

axon_rag-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

axon_rag-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

axon_rag-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

axon_rag-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

axon_rag-0.3.1-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

axon_rag-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

axon_rag-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

axon_rag-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

axon_rag-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: axon_rag-0.3.1.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

Hashes for axon_rag-0.3.1.tar.gz
Algorithm Hash digest
SHA256 092f9835a93d515705035be41bc99bdc3ee282a84346a31bc4fe58efaa6a55aa
MD5 546238a33014fa83af1c4d5a517af04f
BLAKE2b-256 da11f93271846e72fa9d197811b728581d9d775e98b2fb935bea25190ef474f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: axon_rag-0.3.1-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

Hashes for axon_rag-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0b032de66313160e358e1d193ad2af1d6eda1c797909619a5f6d7a21448ee0f7
MD5 7ff1b54a8d63897d176dfa2e82796cb4
BLAKE2b-256 b9ffa9853fce0fd982566e4cd2032b75efdc117669af76e92c4bfe8d47c8134a

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b3c7f50fcbc1455159ff742950648f2ff1c9f6b7dc3333c0681d3e556605a19
MD5 0789088d991dfea666038a1ca05a4c19
BLAKE2b-256 fb8e7fedca33506367a9244498199fa876736bb4f6cf5fa24ba581cb21b7804e

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d688d97108508e7e211d54da07259d9eb8e033be34b1f208095952712d5a7c23
MD5 5f60c11f2ccf5a28f54a5c461addd9f5
BLAKE2b-256 3836e8bba3c6e6e3928e2d72cc5f6e861cc96650e77ae9a3afd58aa6c69a3a0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 570ac4f746943bc402cece59bceb69131204c33e3bff645726cd460f562c96d6
MD5 24f8f00afea640e70907dbb4366fc603
BLAKE2b-256 722d7bc9acc9cb75c1283fd626a7d9d66edcef4044511d14cac4ee79a96a0d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1508209bcf5c5586883a5b8dd600afd4474779a3ed6bf838f5a125f82a398db7
MD5 627a0ac2f46e801b33654daec5d75f8f
BLAKE2b-256 bd962d00e6e1a72d3eeadcb73ae8020911603f3d1452a68d0768f77c2e7ccbd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: axon_rag-0.3.1-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

Hashes for axon_rag-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 865c521e1e6d1baae786bca62598306665877d981eccf33bfc226e39d07c6654
MD5 c373e982ac803bbca2cfee520ace8f26
BLAKE2b-256 50115105afb4bb47357c744d118a2dcb6489890dec9e83225927ae0eba0e74ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05c48cb003963d4300c58e2f1b4e1fc30a9cf7eb15c1b03f910409e1d1ba8e4b
MD5 6839bd1fa73902ea23285c0784bc9938
BLAKE2b-256 299c61efad9dade91dbbd01916e4eedd04c6deab7eaf09ba64d8c15f5c851851

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 863927801e9a6d395578d98fb1e95630b72e233edeb07ca3a457d9df47529e79
MD5 b06878e88155ca7b818bb5e2fb064096
BLAKE2b-256 4f7a72b29e7a5f77a37091af0eda7959b6a44602b364b792ac6ec37824d4cf6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70f8ce8f70ff2030ea918c37a56b9a5f6527f0ea95655d1328ed8d2b2af50863
MD5 d8ef7b0b2c63531f37bf3ccd0c5a1fce
BLAKE2b-256 5ddd062e649aeb49378f6d802f588a632b3005ca3e1c1d7e3df92cb302891d25

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c579b92dfdaf13d5208cb2aedd629d2f37c46cf1b3508590fd683e18595d6336
MD5 77405d0a93af20838cf2b1a856c7d1c1
BLAKE2b-256 b2d79bdf326290005dc89e91b2d993a830a9b2ea85573a56aa56fff1954af20f

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: axon_rag-0.3.1-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

Hashes for axon_rag-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 123d9c4a46ec6616afff63d20f72700dd7a209db83d14aac0850f32b2661535a
MD5 da75c4583cb2390f33c6bd4411d13fda
BLAKE2b-256 606a5348d683efae687c6c9fcded3f562596a9f678a049591cf45d53876cae08

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a6a3a42fb41ba0a001832e44462bdc9031d6a7fb6a8570573a69b45b7a276a8
MD5 a8d34815bfe23efe6c815af4da2709ec
BLAKE2b-256 226e0a4bc6927ca1734db6c5bfdf3029906b4a2552f249882b577387777ecb9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db19bfa9ed522a11e5a8266c1a73ddb45e1decd72842224af966e1537e09764f
MD5 3ffec155b8ea139a65dd15abbdb33581
BLAKE2b-256 2c745828a587255800b50cb2843b04fd97b205a633303506f4db7b4f7a6b4af5

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cee2848e4fc4d761655f046808bc8dfe7aab8d402337a5689d5a02979ecd9d0
MD5 8d991913f93bf1434aeaa7f1605dd5e7
BLAKE2b-256 765bea6369154ebb3bde13f495e3621a1cc8803006e13bef3682fdf879dfee05

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d659c7c317606bc31b9dccd05f8d4d3750a2dff6b00860881fd48dc81eccde00
MD5 215bf46b8b109afbbfd93da3eb7a1219
BLAKE2b-256 508ec60358e69ea6098ae569416a1e11319d0de6c3325a2fd7b7efe0001ad2e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: axon_rag-0.3.1-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

Hashes for axon_rag-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 60e18df6f315d743827dea3527e6e88a1969ee3128770bf7c1e4af708043ae4f
MD5 6606cc039083c53da043578b41928be7
BLAKE2b-256 db79d6140b77223143f444386ae20d484e41c3ec8f395c86fd6bc23f999ac931

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be3c1963278f2adc385d60f16f0f92500dc6868f02cabf9c04d2a256ecf84186
MD5 8ab0b69bc1fb53c87a1a924cc27bb4ab
BLAKE2b-256 55251433cfc2e5f8683f8a21ae189530be320868ff89e3fe99b9c2235f87938d

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d7cd119cf51ff55d791c48797491dd8c7be35a4499cfaacfaaa5eda462e5d8e
MD5 ffc822f010005b392735a03bf21cfe87
BLAKE2b-256 3b8a83e68a2711db6ae7ba607166ff33b3084f93dfd9cff0ee3b8ec14a2a5ee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83cd1b725b6018d6bb22ccfc1dffcc965874f53fa78dcd4d1c785717988b35c9
MD5 dfee7c7990266e8ab5796fbe0b74752e
BLAKE2b-256 0a372f272fcb8b90929b44aabd2590d48204da4bfadfdf145d8ca07413f0d861

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89376d25f145935b37fef3a560d218dfd6ffea605d92fb991546d55f6e8b07e0
MD5 efd328c3e328c8c7fb52318f8d54f0eb
BLAKE2b-256 d1dba6ed9e968ec0ed516a170c7c8908d4937ab4dfa6ce1392631f22e8cf9d80

See more details on using hashes here.

Provenance

The following attestation bundles were made for axon_rag-0.3.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