knowledge-rag 3.5.0__tar.gz → 3.5.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/PKG-INFO +11 -14
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/README.md +9 -12
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/mcp_server/__init__.py +1 -1
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/mcp_server/server.py +1 -1
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/pyproject.toml +2 -2
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/.gitignore +0 -0
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/LICENSE +0 -0
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/config.example.yaml +0 -0
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/documents/examples/sample-document.md +0 -0
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/mcp_server/config.py +0 -0
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/mcp_server/ingestion.py +0 -0
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/presets/cybersecurity.yaml +0 -0
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/presets/developer.yaml +0 -0
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/presets/general.yaml +0 -0
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/presets/research.yaml +0 -0
- {knowledge_rag-3.5.0 → knowledge_rag-3.5.1}/requirements.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: knowledge-rag
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.1
|
|
4
4
|
Summary: Local RAG System for Claude Code — Hybrid search + Cross-encoder Reranking + 12 MCP Tools. Zero external servers.
|
|
5
5
|
Project-URL: Homepage, https://github.com/lyonzin/knowledge-rag
|
|
6
6
|
Project-URL: Repository, https://github.com/lyonzin/knowledge-rag
|
|
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
20
20
|
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
21
|
Classifier: Topic :: Text Processing :: Indexing
|
|
22
|
-
Requires-Python:
|
|
22
|
+
Requires-Python: >=3.11
|
|
23
23
|
Requires-Dist: beautifulsoup4>=4.12.0
|
|
24
24
|
Requires-Dist: chromadb>=1.4.0
|
|
25
25
|
Requires-Dist: fastembed[reranking]>=0.4.0
|
|
@@ -40,8 +40,8 @@ Description-Content-Type: text/markdown
|
|
|
40
40
|
|
|
41
41
|
<div align="center">
|
|
42
42
|
|
|
43
|
-

|
|
44
|
+

|
|
45
45
|

|
|
46
46
|

|
|
47
47
|
[](https://github.com/lyonzin/knowledge-rag/actions/workflows/ci.yml)
|
|
@@ -319,7 +319,7 @@ flowchart LR
|
|
|
319
319
|
|
|
320
320
|
### Prerequisites
|
|
321
321
|
|
|
322
|
-
- Python 3.11
|
|
322
|
+
- Python 3.11+
|
|
323
323
|
- Claude Code CLI
|
|
324
324
|
- ~200MB disk for model cache (auto-downloaded on first run)
|
|
325
325
|
- *Optional:* NVIDIA GPU + CUDA for [accelerated embeddings](#gpu-accelerated-embeddings-optional) (`pip install knowledge-rag[gpu]`)
|
|
@@ -950,17 +950,10 @@ knowledge-rag/
|
|
|
950
950
|
|
|
951
951
|
### Python version mismatch
|
|
952
952
|
|
|
953
|
-
|
|
953
|
+
Requires Python 3.11 or newer.
|
|
954
954
|
|
|
955
955
|
```bash
|
|
956
|
-
#
|
|
957
|
-
python --version
|
|
958
|
-
|
|
959
|
-
# Windows: use specific version
|
|
960
|
-
py -3.12 -m venv venv
|
|
961
|
-
|
|
962
|
-
# Linux/macOS: use specific version
|
|
963
|
-
python3.12 -m venv venv
|
|
956
|
+
python --version # Must be 3.11+
|
|
964
957
|
```
|
|
965
958
|
|
|
966
959
|
### FastEmbed model download fails
|
|
@@ -1018,6 +1011,10 @@ With ~200 documents, expect ~300-500MB RAM. The embedding model (~50MB) and rera
|
|
|
1018
1011
|
|
|
1019
1012
|
## Changelog
|
|
1020
1013
|
|
|
1014
|
+
### v3.5.1 (2026-04-16)
|
|
1015
|
+
|
|
1016
|
+
- **FIX**: Removed Python upper bound constraint (`<3.13` → `>=3.11`). Python 3.13 and 3.14 now supported — onnxruntime ships wheels for both.
|
|
1017
|
+
|
|
1021
1018
|
### v3.5.0 (2026-04-16)
|
|
1022
1019
|
|
|
1023
1020
|
- **NEW**: Optional GPU acceleration for ONNX embeddings — `pip install knowledge-rag[gpu]` + `models.embedding.gpu: true` in config. 5-10x faster indexing on NVIDIA GPUs with automatic CPU fallback.
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
<div align="center">
|
|
4
4
|
|
|
5
|
-

|
|
6
|
+

|
|
7
7
|

|
|
8
8
|

|
|
9
9
|
[](https://github.com/lyonzin/knowledge-rag/actions/workflows/ci.yml)
|
|
@@ -281,7 +281,7 @@ flowchart LR
|
|
|
281
281
|
|
|
282
282
|
### Prerequisites
|
|
283
283
|
|
|
284
|
-
- Python 3.11
|
|
284
|
+
- Python 3.11+
|
|
285
285
|
- Claude Code CLI
|
|
286
286
|
- ~200MB disk for model cache (auto-downloaded on first run)
|
|
287
287
|
- *Optional:* NVIDIA GPU + CUDA for [accelerated embeddings](#gpu-accelerated-embeddings-optional) (`pip install knowledge-rag[gpu]`)
|
|
@@ -912,17 +912,10 @@ knowledge-rag/
|
|
|
912
912
|
|
|
913
913
|
### Python version mismatch
|
|
914
914
|
|
|
915
|
-
|
|
915
|
+
Requires Python 3.11 or newer.
|
|
916
916
|
|
|
917
917
|
```bash
|
|
918
|
-
#
|
|
919
|
-
python --version
|
|
920
|
-
|
|
921
|
-
# Windows: use specific version
|
|
922
|
-
py -3.12 -m venv venv
|
|
923
|
-
|
|
924
|
-
# Linux/macOS: use specific version
|
|
925
|
-
python3.12 -m venv venv
|
|
918
|
+
python --version # Must be 3.11+
|
|
926
919
|
```
|
|
927
920
|
|
|
928
921
|
### FastEmbed model download fails
|
|
@@ -980,6 +973,10 @@ With ~200 documents, expect ~300-500MB RAM. The embedding model (~50MB) and rera
|
|
|
980
973
|
|
|
981
974
|
## Changelog
|
|
982
975
|
|
|
976
|
+
### v3.5.1 (2026-04-16)
|
|
977
|
+
|
|
978
|
+
- **FIX**: Removed Python upper bound constraint (`<3.13` → `>=3.11`). Python 3.13 and 3.14 now supported — onnxruntime ships wheels for both.
|
|
979
|
+
|
|
983
980
|
### v3.5.0 (2026-04-16)
|
|
984
981
|
|
|
985
982
|
- **NEW**: Optional GPU acceleration for ONNX embeddings — `pip install knowledge-rag[gpu]` + `models.embedding.gpu: true` in config. 5-10x faster indexing on NVIDIA GPUs with automatic CPU fallback.
|
|
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "knowledge-rag"
|
|
7
|
-
version = "3.5.
|
|
7
|
+
version = "3.5.1"
|
|
8
8
|
description = "Local RAG System for Claude Code — Hybrid search + Cross-encoder Reranking + 12 MCP Tools. Zero external servers."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
11
|
-
requires-python = ">=3.11
|
|
11
|
+
requires-python = ">=3.11"
|
|
12
12
|
authors = [
|
|
13
13
|
{name = "Lyon.", email = "lyonzin@users.noreply.github.com"},
|
|
14
14
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|