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 banner, ingest, and a cited query

๐Ÿค” Why Axon?

Most RAG tools make you choose between cloud power and data privacy. Axon is local-first โ€” full capability with zero egress when you run on Ollama or vLLM; cloud providers (OpenAI, Gemini, Grok, GitHub Copilot, Ollama Cloud) stay optional.

  • ๐Ÿ”’ Private by default โ€” local inference via Ollama or vLLM is the recommended path; cloud providers (OpenAI, Gemini, Grok, GitHub Copilot, Ollama Cloud) remain opt-in. No telemetry. Strict offline / air-gap mode shuts every outbound call off entirely.
  • ๐Ÿ“„ Ingest anything โ€” 54 file formats (PDF, DOCX, Jupyter, code, images, URLs) in one command. SHA-256 dedup skips unchanged files.
  • ๐Ÿค– Works in your tools โ€” @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 inspect its supporting chunks and source excerpt.
  • ๐Ÿ”ฌ Production-grade retrieval โ€” hybrid search, reranking, HyDE, multi-query expansion, and automatic web fallback. Zero manual tuning.

โœจ Capabilities

๐Ÿ” 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
  • Structured citations โ€” sources + citations arrays with character offsets (Claude / OpenAI compatible)

๐Ÿง  Graph Intelligence

  • GraphRAG โ€” entity/relation/community graph (local / global / hybrid)
  • Dynamic Graph โ€” bi-temporal SQLite facts with valid_at + invalid_at
  • Federated โ€” weighted RRF over multiple backends, tunable per query
  • Point-in-time queries (v0.3.2) โ€” --graph-retrieve "..." --graph-at TS
  • Conflict inspection (v0.3.2) โ€” --graph-conflicts surfaces status='conflicted' facts
  • RAPTOR โ€” hierarchical corpus summaries ยท Code Graph via AST ยท 3D webview

๐Ÿ“ฅ 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 (API key): OpenAI, Gemini, xAI Grok, GitHub Copilot, Ollama Cloud
  • 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 โ€” 73 endpoints with Swagger docs at /docs
  • MCP server โ€” 51 tools for Claude Code, Codex, Gemini, Cursor, Copilot
  • @axon VS Code chat participant with Graph and Governance panels

โšก Quick Start

pip install "axon-rag[starter]"   # Python 3.10+. Includes UI, sealed sharing, extra loaders.
axon                              # First run auto-launches the setup wizard, then drops into the REPL.

That's it. The wizard configures your LLM provider, embedding model, and retrieval defaults; subsequent runs go straight to the REPL.

See it run โ€” first-run wizard, ingest, and a cited query
Axon REPL โ€” first-run wizard, ingest, and a cited query in action

If something doesn't look right:

axon --doctor                     # Health checks: Python, Ollama, model pulled, store writable.

Local inference uses Ollama or vLLM (self-hosted). Cloud providers (OpenAI, Gemini, Grok, GitHub Copilot, Ollama Cloud) work via API keys.

โ†’ Setup guide for VS Code, MCP, and cloud providers โ†’


๐Ÿ” Sealed Sharing Quick Start

Share an encrypted knowledge base through OneDrive, Dropbox, or Google Drive. Cloud providers see only ciphertext.

pip install "axon-rag[sealed]"   # install sealed extra on both machines

Owner (5 steps)

axon --store-init "/path/to/OneDrive/AxonStore"  # 1. point store at sync folder
axon --store-bootstrap "your-passphrase"          # 2. bootstrap master key (once per machine)
axon --project-new research                       # 3. create project + ingest
axon --project research --ingest /docs
axon --project-seal research                      # 4. encrypt in place (โ‰ˆ1 s per 100 MB)
axon --share-generate research alice              # 5. print SEALED1:... string โ€” send to grantee

Grantee (3 steps)

axon --store-init "/path/to/OneDrive/AxonStore"   # 1. same shared folder
axon --share-redeem "SEALED1:..."                  # 2. redeem โ€” DEK stored in OS keyring
axon --project mounts/owner_research "question"   # 3. query; Axon decrypts to temp, wipes on exit

โ†’ Full Sharing Guide โ€” OneDrive setup, revocation, headless/Docker grantees, filesystem compatibility matrix.


๐Ÿš€ Entry Points

Command Starts Default Port Best For
axon Interactive REPL โ€” Day-to-day exploration, power users
axon-api FastAPI REST server 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 51 tools appear in the agent hammer menu automatically.

The VS Code extension surfaces 39 LM tools to Copilot Chat, covering core RAG operations, sealed-store security, sharing, and governance.

Full setup guide โ†’


๐Ÿ Use Axon from Your Python Agent

Drop-in retrievers for LangChain and LlamaIndex agents โ€” no REST round-trips, no extra process. Both wrap the same AxonBrain.search_raw() codepath the REST and REPL surfaces use, so hybrid search, reranking, HyDE, multi-query, and the GraphRAG budget apply automatically.

# pip install "axon-rag[langchain]"
from axon import AxonBrain, AxonConfig
from axon.integrations.langchain import AxonRetriever

brain = AxonBrain(AxonConfig.from_yaml("config.yaml"))
retriever = AxonRetriever(brain=brain, top_k=5)

docs = retriever.invoke("what does the project do?")  # list[Document]
# pip install "axon-rag[llama-index]"
from axon.integrations.llama_index import AxonLlamaRetriever

retriever = AxonLlamaRetriever(brain=brain, top_k=5)
nodes = retriever.retrieve("what does the project do?")  # list[NodeWithScore]

Per-call overrides (e.g. force HyDE for one question): retriever.with_overrides({"hyde": True}).invoke(query).


๐Ÿ“š 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 51 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.4.1.tar.gz (1.9 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.4.1-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

axon_rag-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

axon_rag-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

axon_rag-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

axon_rag-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

axon_rag-0.4.1-cp312-cp312-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.12Windows x86-64

axon_rag-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

axon_rag-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

axon_rag-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

axon_rag-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

axon_rag-0.4.1-cp311-cp311-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.11Windows x86-64

axon_rag-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

axon_rag-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

axon_rag-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

axon_rag-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

axon_rag-0.4.1-cp310-cp310-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.10Windows x86-64

axon_rag-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

axon_rag-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

axon_rag-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

axon_rag-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (2.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: axon_rag-0.4.1.tar.gz
  • Upload date:
  • Size: 1.9 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.4.1.tar.gz
Algorithm Hash digest
SHA256 49ff07e2928ba0837b8937d098083ece306f7d2a633ad906a10f9c2f3ce24cdf
MD5 b936430fbbeea9b91118a0992b14449f
BLAKE2b-256 14f58033cd03886b6a2ab55e6aeb73663ea58da8cb7ad5e0aa801f3553bf73c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: axon_rag-0.4.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e2aad82a47a19db42716d11eb292271660767e36b10d3301ee7f5e37fa3b81f7
MD5 0c18c088607f61bfec3703273b0be71a
BLAKE2b-256 834248f9423c584871a383b0c56d80a558fe3db74eb3673c7fab9d7c6480ee6b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3a0e7b9792b437f592deb62633cef0d713e4cb0afdf6d3aaae7c297d8efd77a
MD5 cee47fa5cc950275852b09f05c5f35bb
BLAKE2b-256 4c005ddbc5bc8695a7bbfe04c25d31cc7c23aca4a94e6207ed8ba124e3000b4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1591b8a48def9b4496db59e2e0b24fa86032079101e8339524c1d11bafd5e15f
MD5 981b751ab80d58802e6d4e6dc611e375
BLAKE2b-256 ab0dc082c1ddc55521775ff0ac8c87ecbdfb1486250f9b4a64c0fba0e27f0dfb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eaf1b3370762869af6bea668867de081259f964d1eaa72000fc5e640f2c2273f
MD5 c04453b4ef5cf21ec45a6fbb04b8e084
BLAKE2b-256 d4d89d5364f5dddf2ef60427aa150384c88d6c54d7ed840128cd380c8c3d533a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bf7100152410b7acf6ff3e74d5ddab620b4b6edbdfd2ac68533ac411d938928
MD5 1599a3b073b3487bbb7929a0b7348beb
BLAKE2b-256 30ed377220ba031acc00c99144942ab7c8e1e4721ecfc9a293f43af2032910c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: axon_rag-0.4.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6257dd9e9880606be8dc3e085c02646be5caa60e7be55e7e23118aa867c7dd85
MD5 00bef28d7b475dd707b26a15ed91ebdd
BLAKE2b-256 7a4bb879f2170097dc1dbfc63829d007f55b1a17bef0c7345c79b59e67cc7692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c5b22dd5860bfe5a2bea89fced137bc108bcad66493de5ec1a807cd7f8c319b1
MD5 3be56a26e46f4cd5d3add01b37cb05c1
BLAKE2b-256 1e3b16a6ae1f1d58801690d1f39e650b0e6edd3ccfb7139e5835d3ade5cabadd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d265b7151b600645f20ae357862657d5e97f12bf5f2798923932fcf136705aa
MD5 1b03405fefcfd0546c22d6fb19982d2c
BLAKE2b-256 57ebbbb6ffcaf62a482cc9443c4047d92eaa367a25403976adbe42c6ca257b8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5958e8c50cb78dbe57fce00c18222700dc59d34049731405c1a86aa342ed99b6
MD5 d628ea21d829e54285aa20c9e62f4751
BLAKE2b-256 580bca6d43f5951f225b6ba8d5b6096f82a5f2f06ac0acafe154bcac585e96c4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98f1c6b51a3ba769db7af0cc6ed4cc5aeec8e49c7a07ab8c06cc7d78a8af5052
MD5 ea0c814f53e5a3256f0740191033c025
BLAKE2b-256 22b6a341b06c2fa24bd207127ce7638a63435f4011833b312dba0b4791a24cd7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: axon_rag-0.4.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2ba8fbe7d2aeed87ca61a1dd7c2976d159f70ea14d13e7e40b41d9adca8686c3
MD5 2377088b2ef5d70c4c4f5fd3675597ea
BLAKE2b-256 93dd5fabb465cb2c7386c3c65236b24afe9d95eb80c957507080e54f963628cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 142b1263f4c5db9c18d06fa9a766c07bbadcfd8d4d37d087f418b35da5f72300
MD5 963461b242a33029bd1e756634abfa56
BLAKE2b-256 a5483da239fd8389018af7e6941de2a08875f8c8519fc5dcce31faa26379587b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f525c69c4489150731ab5b06f189538698a7cd296faf6cf0cd9eadaae40e4d9
MD5 a4e171636aa91f8287f081f44da7cce0
BLAKE2b-256 73879910c548f651d7e04bf18e86ff715179d2cbcc387f8b6dcf2016a856aa91

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 502154d863a280d9ecaebb4019336c4d385a34eb5c1b2970e325762d9a4eca5f
MD5 276ce1c4695d669ffdceb3f467fb9ff9
BLAKE2b-256 956e8d1f3e2fb07355fa56dc678551e99d3390b3cd779476e765c8ca1f5c73c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 376929b3f42560ae1bf9d3f1826cf9009fac480a18def1130f99a7a048cf53e1
MD5 9c11e298ebb39a1c946f029852374315
BLAKE2b-256 0728b99729373381ebea351c8b12ed16befc32015ec286c29530b45492f54ac1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: axon_rag-0.4.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.9 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.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1895fb8c031632b934ea32ad273656a6d3d5b766d6d822718ae00a116a9e44da
MD5 aaca0dd262e532c0d5639e85bc3c0d62
BLAKE2b-256 48373c0dc64b3313ccb11c1251f23ad6fd478bece9505360bbdf89033ad1ba42

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87a4c4beb953585e32a2e422fb5735eb4d1739b3d6efb9104770205f043acb76
MD5 c54f3f1b6bf1defaec8f89975c16c038
BLAKE2b-256 a68cd887317ead8f23e62d59dc81b4685e2cc75828610a7769bbaafbdc6ca35c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b64cbc632a72328f6bfd98048aa7d5e55cb93848bb70b39a21a4983dc84b1a0
MD5 a75e66a8b29bcd2cc997e596781fc0bf
BLAKE2b-256 83fbb4a9320b7b373f72d434ac45018fa01e916a6def11c0fd82256893be8da1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a09b8172795459ccd18ddebe019a09b477d8457f83a32300e4600f965ae25a0
MD5 7148edf0ed915b6d5d1f85073fa13eac
BLAKE2b-256 762f1c499b8062ccb075af8a66eb54b8bbab9d1d170ab72490889e27b7040f86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c06da32843a985ff5c3dcee17822fc90377035158418d8764efa195fdd2a8f69
MD5 3a4313d01005b125efd96b51cc84bc84
BLAKE2b-256 e680cbd1afa679756b59aaf82617fbc5ba9f6a9d3779b7e7304abaa4db56ec38

See more details on using hashes here.

Provenance

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