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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

axon_rag-0.4.0-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.0-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.0-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.0-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.0.tar.gz.

File metadata

  • Download URL: axon_rag-0.4.0.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.0.tar.gz
Algorithm Hash digest
SHA256 b15a44cdf911eabcd3c93fc18c025d4c60375b8961d4ebee4be0c5cfece2f2f4
MD5 5faed4f559417f7bef4f018c71942dc4
BLAKE2b-256 4b9d3d1d878c0fcf869ea0485ae702b28c1664dabd7897751bcf22b6f47c11c5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: axon_rag-0.4.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 580c48eeb2fd44672a399460af52cd071082e15c8cf257576d19ac53c9c662ef
MD5 79284ee8d33ce5c05914a849ed690758
BLAKE2b-256 440f1e0f6e96055543b7b6816af5e3e04634c59c4b96ba148b7dbfa921ac466d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43d261f00c010c0a2b59fcfba1285f84c7101df2bb7f93a2c94efbebdd58288b
MD5 996425f7d14f2698467d8e22c75b952e
BLAKE2b-256 c8900cef8fda5baa44a7897e53db3d95fe4398a03e374e2e78d94f88ddcfd66b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd9753df366a79c1e3b20aa9980467b4709ebfbe81366f598cf51d292984461a
MD5 bbb2dc3dd864765be1c87bbd29a3607b
BLAKE2b-256 43af4196f2a7b825bc610b09cf9b7e610db3ddbf3d8e03ffd7e672e68292c39e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b50a5cf4208a16a22424daf1cb2971081319a28a1774b6cc0a88fd2b95736ab
MD5 8107fb0b6dd20fe610f5075867c66eee
BLAKE2b-256 5ac920b55760f4a4ddb137939734905b055737dd0ef7bed4b1b6eef3315022ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89859a623d40a5ee1c3c5f4b57427621fc36e170dffb2716f6a8227631c9e2c4
MD5 fc7355949e7bfc88691cd9559702d062
BLAKE2b-256 6be59ebcffe337551dd6a2d6afc3808d2e489fbfc8f751f342baf4ac7d02d48c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: axon_rag-0.4.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4dd64e0bc138a8ea4079d00acd6a96e379c195d1d0427d195d01f5c974e97400
MD5 6a20c95dab8a63aaa9386a36f8d7d96f
BLAKE2b-256 d602ade3f91884a16338ea5339320b46d6d89354c4611c490a1f4b0f4a467ee7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2916fccc9773c87789b7b01c0bbb74b5cb5d9a1669d0b4a452dd51a97c90c4ae
MD5 4bc7ff2e2be740ee423cdd91a5227a0c
BLAKE2b-256 7e5aff82a6bbaf0f625fc9279cb9e43abc9e8aecb96de3e6d91ad1955df0d43d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04083684194b6e542e604ccdc938ba5e40c500414adc378fbd53260cc76bba4a
MD5 32ad44f2b3edb83eb39f1888bc6573ad
BLAKE2b-256 4e57ba082c6271c8965d3b130d50acef8d69ee88d189c018b5b117b520b3326c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6dfc07bb4cce96e69e99442886f1552321104d6b39dfa53c68b587b55089435
MD5 7256e0c0ea6a0b15b2c494b30ff3bc7b
BLAKE2b-256 af80c4f1950f64264f6f6d8257f2f611ab1f8de030630efb6bd26e7e560e6937

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a841d819cd6f3f11844b36d499580bd51b0d82b543e4c0f526de28ee167fb79
MD5 2360e3a076c8744e411fffd69fd02adb
BLAKE2b-256 85b1057c162f87273a359bf6c4001092f6aa4b571474d13582fdbbdb2ff02a5b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: axon_rag-0.4.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 10de1e721abbe10e83ee240b8fad0f6ff5e01a6b77c3420820f19074e64c1a12
MD5 b92377c0efa41dff70a6e46c9869fb1a
BLAKE2b-256 09ead08c3107b952fa2e9b9242c767d680cb8817b5677ccc8f4b50f60b1467be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1733a8a05318f0b519c091419b023eb771a9b2a30f58cf3408c180dab63b9480
MD5 50155c85c8876d2bab9c116a4eab301a
BLAKE2b-256 b11fe9754c1757c09e7e24f3b2b8275f3ca522328580719e84cf5b84e0e62e1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70105cd9352bc33196427a7cd5fd939075c577b16dcf41e16990e843815d0058
MD5 20afae3a89f3a7eabb37f0774a510f82
BLAKE2b-256 065b9051c5d9f7c2ed0d4784145eaef2f5c71a2b5faeacd8e3d0c4b6ec0d5b37

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd22d3b18145d45343a0d21760a08da0235df96ccf467a1285ee8aee9fcd9a41
MD5 c25ef60fcbac10df94faf428effe0198
BLAKE2b-256 2c5ac598f3976f7580efd7802f1d0e4c23f18f2467c42140c9ce5f8adf23029e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ba054e9ee5e520ab85617004a35e3da8d287e756714c5751432ba90041bbdc0
MD5 ec343eb714cc78a1d7d3d5fcbc42d456
BLAKE2b-256 49056d56f12a3090cea5007df096fe01b0566924ef9e18ff1193adc086da0482

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: axon_rag-0.4.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 29d04636a4c7d1cfc49f1160e210f01ef80034462abfaa81bec8ef37ce18f707
MD5 19fb7200cb481c8045c6213afa19922c
BLAKE2b-256 d5976e4e43d15b3c74202e99a5dfea3d102e258ea078f17f4318238438cdde62

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb3842320560688f42026bd8c81d4783fea5d57e2e0c78c13da738b32dacaf1e
MD5 2715806c247c07a63bed38d950d9177e
BLAKE2b-256 83261963ccdf5cd331c88486c1c7aa554201eb9fbe50b3e22680a509faac4869

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f078525767c22b4f1945688e5c954b95ffea4e53aa8bb481cccf49784bada242
MD5 c4a695c6195de1a585b206e2fe469e28
BLAKE2b-256 fa48699fba528fc41d1323ddce8f5c98688c4966017e1f1bcfc2e764d2d806c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f86f0182e7695cab554f870ba0cb2d531fecdff346a3bc82121f090ef5d4753
MD5 938ebdbd14d54e945dff907f4d999b5c
BLAKE2b-256 14b63f4979dca7e218f96ef67cb729f66171c8fd0a348cf86d2c2ca064e9d5fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for axon_rag-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7c85eaa37f351d6e0adc7d077ce3839b649e988810e886e6e3cc6519f718601
MD5 ed0ad7b7a4f6203ffa51ca825466fa0f
BLAKE2b-256 7809ea6dbc858f98a62b15fa5ee03b5f6424330679390402a3b76e8a6f732a8f

See more details on using hashes here.

Provenance

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