knowledge-rag 3.0.0__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.
@@ -0,0 +1,51 @@
1
+ # Runtime
2
+ venv/
3
+ __pycache__/
4
+ *.pyc
5
+ data/
6
+
7
+ # Personal documents (NEVER commit — user-populated content)
8
+ documents/aar/
9
+ documents/security/
10
+ documents/logscale/
11
+ documents/general/
12
+ documents/ctf/
13
+ documents/development/
14
+
15
+ # Sensitive file formats (extra safety layer)
16
+ documents/**/*.pdf
17
+ documents/**/*.docx
18
+ documents/**/*.xlsx
19
+ documents/**/*.pptx
20
+ documents/**/*.csv
21
+
22
+ # Keep example docs
23
+ !documents/examples/
24
+ !documents/examples/**
25
+
26
+ # FastEmbed model cache
27
+ .cache/
28
+ *.onnx
29
+
30
+ # Local scripts (not part of distribution)
31
+ scripts/
32
+ setup-notebook.ps1
33
+ demo-real.yml
34
+ documents/.sync-log.txt
35
+ documents/README-CATEGORIES.md
36
+
37
+ # Temp/junk
38
+ *.b64
39
+ *.tar.gz
40
+ *.bak
41
+
42
+ # OS files
43
+ .DS_Store
44
+ Thumbs.db
45
+ desktop.ini
46
+
47
+ # IDE
48
+ .vscode/
49
+ .idea/
50
+ *.swp
51
+ *.swo
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Ailton Rocha (Lyon)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.