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.0.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.0-cp313-cp313-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.13Windows x86-64

axon_rag-0.3.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

axon_rag-0.3.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

axon_rag-0.3.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (2.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

axon_rag-0.3.0-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.0-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.0-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.0-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.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

Hashes for axon_rag-0.3.0.tar.gz
Algorithm Hash digest
SHA256 3988f1ee697d0ba498c83a5077963a10206b674c778c2380d4e6ec091c3ed641
MD5 4ae810736da2afd7036fcc7400e873bf
BLAKE2b-256 f9b7b72ea8d36fb7b7d8d915c0b38643a0bdd3ed13c40c292a8835b9671350dd

See more details on using hashes here.

Provenance

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

Hashes for axon_rag-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3ed7969c5bc8e563b10db3de3f3324efd8444300018838f6f15871bc12cbfa27
MD5 8afdc55d31040a1938be4de609229b87
BLAKE2b-256 ff7800f756f188b0e04956edf54eec1b07c6b646c6d9dc6008e7e5175b410dec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d0c1fb98e922b99cafe7aa08c4cd28639e0ae27f3539f86127078c4746393aef
MD5 84bfacc6fe002e39e8b14e5a8ac2b8b8
BLAKE2b-256 da376ab7f4d4cdeb3345a23df6eaf5e023d9f5796497663f342702a2e6f75de4

See more details on using hashes here.

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

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.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cfa0586eb9f262def0c4860706bdfb5992f3372d26fa24169f00eb565774bab2
MD5 11daade245af0f81c581654216332004
BLAKE2b-256 abd0c0a5f9bf2915aa9136bccb5261d7050dcc2fb2e468987ce878896d0a7326

See more details on using hashes here.

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

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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13110864e6885215ec8e26c16343d03a30e22862e484ca1c133bb82924874849
MD5 5bb4a714e941df99ea5b9f5b2f577042
BLAKE2b-256 7f00fd0a262543bb6809dcda6cc4355a6ee886c989c70c3e7ee9fe8005d6bff3

See more details on using hashes here.

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

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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 154ba1473c5697db7ed61f370d06bddafd79fd894e582883a1898f2e900c47b3
MD5 c96764c8336c052f5f336802b97cefb7
BLAKE2b-256 3b9a735c39fd76317655341b79042d14592e0be7d9d401619ae632f8b62274ed

See more details on using hashes here.

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

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

Hashes for axon_rag-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7336da8f7b72b63650a5d78d87d71d2cb3c404ef642a032938f16530eccb9c9f
MD5 0016d75ac67866590deba2928cf3ec1a
BLAKE2b-256 d1c058c4b18182c3dee36a0e238d3fa0e7d5e111f8ca0ed840a47c3e8c6c21c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e74784191f05480f6b263cc7952ca56bbdacc1442856d6535a064b1193f8c3c
MD5 3fe0095a33262b9b64cca23d41083e02
BLAKE2b-256 d73b32e96250141472fd7ccb26da301da6de677d0d219c2ad54429661c29a7ad

See more details on using hashes here.

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

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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff6a9c92fdfa39bfe68802f786ac1263a5de554030f1f291e1d60f66d05422ec
MD5 93d330718310b42d1d19ea9b2211862b
BLAKE2b-256 5260019708668bac36f866a912159ea9098a16905ae045525c931f2d461a733e

See more details on using hashes here.

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

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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00ab0373c908c90308950e4f90691f50ddd95d0ab14207d9e42e84eaee269337
MD5 41a4858f64cff9aee1ad81553c3260c5
BLAKE2b-256 76a335806548ff8e93d90373f8d6ee9f9a840f83daee536548fc14336e387ac6

See more details on using hashes here.

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

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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cf1682d3ecf20b2ce7b124d71bd8322070b4ee8f75e30b3a04247c56447f390
MD5 2dc827d32f307891d3cdd14b46994368
BLAKE2b-256 1f1a6bb95b61b2bbaecc99ae72ecb68ad0eccac13108d85c0ee9694ab543dc7b

See more details on using hashes here.

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

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

Hashes for axon_rag-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 48643004505d8121c63dfbeb5a649fa09e524293d8eb18a58ca64592536863b8
MD5 cc44a28d16677ce969e87ec7c383d5da
BLAKE2b-256 4dee66f1df8d40139663385baf39a455882b1247cfdf58b507c8e593ec36b02c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 168ac06321f013a8f81dfa676c2c786dab8d8e07ac7baeb921a280e66b77eda5
MD5 083deff08ba3f63138997a69478917e7
BLAKE2b-256 c1eb338b0d14ae2bdff476e461ea22364f493f1cc998a551ac57b3afc6d0adc1

See more details on using hashes here.

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

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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fe7531af7602d23f7d7566ac38bf55fa8512c1fe819f46208dd4c18b7f37d54
MD5 1febade5306b4dbec22b80495dc16b98
BLAKE2b-256 c43b3947d95bb6c1620ff8cf00e0b2625ebaeac9c282ec0ef44d9b8a7f94a288

See more details on using hashes here.

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

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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2219140cd68e130b1b4831788b0d88db8fbc9af1f9bf39b452bb7de1799f66f5
MD5 cc6c40098cc06dc709294ac08cb27ce4
BLAKE2b-256 985607e52815d5f3a431edf180ff9db8dba94ebec6e2de0a78baca197d66d383

See more details on using hashes here.

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

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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2caad8e7b35a2c50412434b648d5452d10bb817442ebaca57861f94635e8d7df
MD5 f5e626eec6b134d1386d872fa9880323
BLAKE2b-256 838010006ae0b699b4dfec73c8d9f921d6bba64f6eb2f55b42ce9c56902ba4ae

See more details on using hashes here.

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

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

Hashes for axon_rag-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 238e9dd98a5a3ec919f6920d5299d1cdd330196f785eb2431f97753e8650cdf7
MD5 d4a42bb3b4969ddd4fb92351c15a8ff4
BLAKE2b-256 e950b325e3e67799c83c697f3cef9415e02823250783a1f2f899ab94163edd08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0507363df987bb5c1a14e1d7a63415c1248217dcd0d4d87dc550d52fc04ecdef
MD5 cf778f4b1a2532e19aaf28c1b5568a62
BLAKE2b-256 b880bdc78d11bd44227a66e2ccb552326f7c81162181ee1ccf77241e7399247f

See more details on using hashes here.

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

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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e225cc01a62925d1d873bd67e617fb598b0a671543dbd2d07710879cf944d6fb
MD5 d27a82e937708683713c2625237b600f
BLAKE2b-256 a667e406b2d80f0dfd5b9837f45feaff7d2d21bdcdaa697999db223d3897ce15

See more details on using hashes here.

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

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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dd87f21618d0d5420d999b268fe190019c3d29c99d95eaebe74ef2da3c3b0f6
MD5 82e2b33f28ef2c0389bb879f9f74f906
BLAKE2b-256 e3a99bedf16aab0dedd5d97826aae6f34d9fec448b8ebcde1ad7bf7c221ecc8f

See more details on using hashes here.

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

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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for axon_rag-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e29ba73744c560487de5ca2555f5a1070cd9a131c68342c1905ee227d6c2408a
MD5 b0653fa1f64bf2942914b9c9e9253e03
BLAKE2b-256 1a92e160b9577bb37e2e559de48027ecfefdb700306e9365cb537149686fbaea

See more details on using hashes here.

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

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