beaver-db 0.20.2__py3-none-any.whl → 0.21.1__py3-none-any.whl
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.
Potentially problematic release.
This version of beaver-db might be problematic. Click here for more details.
- beaver/__init__.py +1 -1
- {beaver_db-0.20.2.dist-info → beaver_db-0.21.1.dist-info}/METADATA +4 -14
- {beaver_db-0.20.2.dist-info → beaver_db-0.21.1.dist-info}/RECORD +6 -6
- {beaver_db-0.20.2.dist-info → beaver_db-0.21.1.dist-info}/WHEEL +0 -0
- {beaver_db-0.20.2.dist-info → beaver_db-0.21.1.dist-info}/entry_points.txt +0 -0
- {beaver_db-0.20.2.dist-info → beaver_db-0.21.1.dist-info}/licenses/LICENSE +0 -0
beaver/__init__.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: beaver-db
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.21.1
|
|
4
4
|
Summary: Fast, embedded, and multi-modal DB based on SQLite for AI-powered applications.
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -9,14 +9,11 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
9
9
|
Classifier: Topic :: Database
|
|
10
10
|
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
11
11
|
Requires-Python: >=3.13
|
|
12
|
-
|
|
13
|
-
Requires-Dist:
|
|
14
|
-
Requires-Dist: typer>=0.19.2; extra == 'cli'
|
|
12
|
+
Requires-Dist: rich>=14.2.0
|
|
13
|
+
Requires-Dist: typer>=0.20.0
|
|
15
14
|
Provides-Extra: full
|
|
16
15
|
Requires-Dist: faiss-cpu>=1.12.0; extra == 'full'
|
|
17
16
|
Requires-Dist: fastapi[standard]>=0.118.0; extra == 'full'
|
|
18
|
-
Requires-Dist: fire[cli]>=0.7.1; extra == 'full'
|
|
19
|
-
Requires-Dist: typer>=0.19.2; extra == 'full'
|
|
20
17
|
Provides-Extra: server
|
|
21
18
|
Requires-Dist: fastapi[standard]>=0.118.0; extra == 'server'
|
|
22
19
|
Provides-Extra: vector
|
|
@@ -481,15 +478,8 @@ For more in-depth examples, check out the scripts in the `examples/` directory:
|
|
|
481
478
|
|
|
482
479
|
`beaver` is roughly feature-complete, but there are still some features and improvements planned for future releases, mostly directed to improving developer experience.
|
|
483
480
|
|
|
484
|
-
These are some of the features and improvements planned for future releases:
|
|
485
|
-
|
|
486
|
-
- **[Issue #2](https://github.com/syalia-srl/beaver/issues/2) Comprehensive async wrappers**: Extend the async support with on-demand wrappers for all data structures, not just channels.
|
|
487
|
-
- **[Issue #6](https://github.com/syalia-srl/beaver/issues/6) Drop-in replacement for Beaver REST server client**: Implement a `BeaverClient` class that acts as a drop-in replacement for `BeaverDB` but works against the REST API server.
|
|
488
|
-
- **[Issue #7](https://github.com/syalia-srl/beaver/issues/7) Replace `faiss` with simpler, linear `numpy` vectorial search**: Investigate removing the heavy `faiss` dependency in favor of a pure `numpy` implementation to improve installation simplicity, accepting a trade-off in search performance for O(1) installation.
|
|
489
|
-
- **[Issue #9](https://github.com/syalia-srl/beaver/issues/9) Type-safe wrappers based on Pydantic-compatible models**: Enhance the built-in `Model` to handle recursive and embedded types and provide Pydantic compatibility.
|
|
490
|
-
|
|
491
|
-
|
|
492
481
|
If you think of something that would make `beaver` more useful for your use case, please open an issue and/or submit a pull request.
|
|
482
|
+
|
|
493
483
|
## License
|
|
494
484
|
|
|
495
485
|
This project is licensed under the MIT License.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
beaver/__init__.py,sha256=
|
|
1
|
+
beaver/__init__.py,sha256=fmKAUEw593a9FkImBlZ5qYiEBUiQoHJeB5vK5bj4iGg,125
|
|
2
2
|
beaver/blobs.py,sha256=VdtjSIPrdjkmAlOZ8-wEkJsJ2KW4b9t8swHFu6d16c8,7394
|
|
3
3
|
beaver/channels.py,sha256=kIuwKMDBdDQObaKT23znsMXzfpKfE7pXSxvf-u4LlpY,9554
|
|
4
4
|
beaver/cli.py,sha256=Sxm-mYU3LGd4tIqw-5LHb0ektWebjV9vn51hm-CMJD0,2232
|
|
@@ -13,8 +13,8 @@ beaver/queues.py,sha256=KRbEKsCcZ4z0poO4rwXhpjwIvLEbvSSr1Nyp1EQM0mE,10183
|
|
|
13
13
|
beaver/server.py,sha256=At3BoEV7JfpYjNtyHMdPUF8shj4V4D5nStXWb6Bv53A,15947
|
|
14
14
|
beaver/types.py,sha256=TKUW5lnqb7Q0xb51iyKGtANJ6-j9XghlhMM3PPIyFN8,2259
|
|
15
15
|
beaver/vectors.py,sha256=EGZf1s364-rMubxkYoTcjBl72lRRxM1cUwypjsoC6ec,18499
|
|
16
|
-
beaver_db-0.
|
|
17
|
-
beaver_db-0.
|
|
18
|
-
beaver_db-0.
|
|
19
|
-
beaver_db-0.
|
|
20
|
-
beaver_db-0.
|
|
16
|
+
beaver_db-0.21.1.dist-info/METADATA,sha256=OIFdECHKJppPKFAE8f6o4wQvwwSfR7BJNceRiXzG5DU,23296
|
|
17
|
+
beaver_db-0.21.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
18
|
+
beaver_db-0.21.1.dist-info/entry_points.txt,sha256=bd5E2s45PoBdtdR9-ToKSdLNhmHp8naV1lWP5mOzlrc,42
|
|
19
|
+
beaver_db-0.21.1.dist-info/licenses/LICENSE,sha256=1xrIY5JnMk_QDQzsqmVzPIIyCgZAkWCC8kF2Ddo1UT0,1071
|
|
20
|
+
beaver_db-0.21.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|