aurora-vault 1.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.
File without changes
@@ -0,0 +1 @@
1
+ include src/aurora_vault/assets/datasets.txt
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: aurora-vault
3
+ Version: 1.0.0
4
+ Summary: Universal RAG engine
5
+ Author: Tareq
6
+ Requires-Python: >=3.8
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Requires-Dist: platformdirs
10
+ Requires-Dist: rich
11
+ Dynamic: license-file
12
+
13
+ # Aurora-Vault ◌
14
+ Developed by **Tareq**
15
+
16
+ A high-performance, universal RAG engine containing 1.6 million supervised records in a tiny footprint.
17
+
18
+ ## Installation
19
+ ```bash
20
+ pip install aurora-vault
@@ -0,0 +1,8 @@
1
+ # Aurora-Vault ◌
2
+ Developed by **Tareq**
3
+
4
+ A high-performance, universal RAG engine containing 1.6 million supervised records in a tiny footprint.
5
+
6
+ ## Installation
7
+ ```bash
8
+ pip install aurora-vault
@@ -0,0 +1,16 @@
1
+ from .interface import print_signature, welcome_ui
2
+ from .engine import VaultEngine
3
+ from .config import ensure_dirs
4
+
5
+
6
+ def load():
7
+ ensure_dirs()
8
+ print_signature()
9
+
10
+ engine = VaultEngine()
11
+
12
+ # FORCE initialization (to ensure indexing runs)
13
+ welcome_ui("Preparing large dataset...")
14
+ engine.initialize()
15
+
16
+ return engine
File without changes