usearch 2.20.6__cp313-cp313-musllinux_1_2_x86_64.whl → 2.20.9__cp313-cp313-musllinux_1_2_x86_64.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 usearch might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: usearch
3
- Version: 2.20.6
3
+ Version: 2.20.9
4
4
  Summary: Smaller & Faster Single-File Vector Search Engine from Unum
5
5
  Home-page: https://github.com/unum-cloud/usearch
6
6
  Author: Ash Vardanian
@@ -63,28 +63,28 @@ Similarity Search & Clustering Engine for <a href="https://github.com/ashvardani
63
63
  <p align="center">
64
64
  Spatial • Binary • Probabilistic • User-Defined Metrics
65
65
  <br/>
66
- <a href="https://unum-cloud.github.io/usearch/cpp">C++ 11</a> •
66
+ <a href="https://unum-cloud.github.io/usearch/cpp">C++11</a> •
67
67
  <a href="https://unum-cloud.github.io/usearch/python">Python 3</a> •
68
68
  <a href="https://unum-cloud.github.io/usearch/javascript">JavaScript</a> •
69
69
  <a href="https://unum-cloud.github.io/usearch/java">Java</a> •
70
70
  <a href="https://unum-cloud.github.io/usearch/rust">Rust</a> •
71
- <a href="https://unum-cloud.github.io/usearch/c">C 99</a> •
71
+ <a href="https://unum-cloud.github.io/usearch/c">C99</a> •
72
72
  <a href="https://unum-cloud.github.io/usearch/objective-c">Objective-C</a> •
73
73
  <a href="https://unum-cloud.github.io/usearch/swift">Swift</a> •
74
74
  <a href="https://unum-cloud.github.io/usearch/csharp">C#</a> •
75
- <a href="https://unum-cloud.github.io/usearch/golang">GoLang</a> •
75
+ <a href="https://unum-cloud.github.io/usearch/golang">Go</a> •
76
76
  <a href="https://unum-cloud.github.io/usearch/wolfram">Wolfram</a>
77
77
  <br/>
78
- Linux • MacOS • Windows • iOS • Android • WebAssembly •
79
- <a href="https://unum-cloud.github.io/usearch/sqlite">SQLite3</a>
78
+ Linux • macOS • Windows • iOS • Android • WebAssembly •
79
+ <a href="https://unum-cloud.github.io/usearch/sqlite">SQLite</a>
80
80
  </p>
81
81
 
82
82
  <div align="center">
83
- <a href="https://pepy.tech/project/usearch"> <img alt="PyPI" src="https://static.pepy.tech/personalized-badge/usearch?period=total&units=abbreviation&left_color=black&right_color=blue&left_text=Python%20PyPi%20installs"> </a>
83
+ <a href="https://pepy.tech/project/usearch"> <img alt="PyPI" src="https://static.pepy.tech/personalized-badge/usearch?period=total&units=abbreviation&left_color=black&right_color=blue&left_text=Python%20PyPI%20installs"> </a>
84
84
  <a href="https://www.npmjs.com/package/usearch"> <img alt="NPM" src="https://img.shields.io/npm/dy/usearch?label=JavaScript%20NPM%20installs"> </a>
85
85
  <a href="https://crates.io/crates/usearch"> <img alt="Crate" src="https://img.shields.io/crates/d/usearch?label=Rust%20Crate%20installs"> </a>
86
86
  <a href="https://www.nuget.org/packages/Cloud.Unum.USearch"> <img alt="NuGet" src="https://img.shields.io/nuget/dt/Cloud.Unum.USearch?label=CSharp%20NuGet%20installs"> </a>
87
- <a href="https://central.sonatype.com/artifact/cloud.unum/usearch/overview"> <img alt="Maven" src="https://img.shields.io/nexus/r/cloud.unum/usearch?server=https%3A%2F%2Fs01.oss.sonatype.org%2F&label=Java%20Maven%20version"> </a>
87
+ <!-- Maven Central publishing is deprecated for now; fat-JAR download is the supported path. -->
88
88
  <img alt="GitHub code size in bytes" src="https://img.shields.io/github/languages/code-size/unum-cloud/usearch?label=Repo%20size">
89
89
  </div>
90
90
 
@@ -203,7 +203,7 @@ This can result in __20x cost reduction__ on AWS and other public clouds.
203
203
  ```py
204
204
  index.save("index.usearch")
205
205
 
206
- loaded_copy = index.load("index.usearch")
206
+ index.load("index.usearch")
207
207
  view = Index.restore("index.usearch", view=True, ...)
208
208
 
209
209
  other_view = Index(ndim=..., metric=...)
@@ -244,6 +244,8 @@ You can use [Numba][numba], [Cppyy][cppyy], or [PeachPy][peachpy] to define your
244
244
  from numba import cfunc, types, carray
245
245
  from usearch.index import Index, MetricKind, MetricSignature, CompiledMetric
246
246
 
247
+ ndim = 256
248
+
247
249
  @cfunc(types.float32(types.CPointer(types.float32), types.CPointer(types.float32)))
248
250
  def python_inner_product(a, b):
249
251
  a_array = carray(a, ndim)
@@ -395,7 +397,7 @@ By now, the core functionality is supported across all bindings.
395
397
  Broader functionality is ported per request.
396
398
  In some cases, like Batch operations, feature parity is meaningless, as the host language has full multi-threading capabilities and the USearch index structure is concurrent by design, so the users can implement batching/scheduling/load-balancing in the most optimal way for their applications.
397
399
 
398
- | | C++ 11 | Python 3 | C 99 | Java | JavaScript | Rust | GoLang | Swift |
400
+ | | C++ 11 | Python 3 | C 99 | Java | JavaScript | Rust | Go | Swift |
399
401
  | :---------------------- | :----: | :------: | :---: | :---: | :--------: | :---: | :----: | :---: |
400
402
  | Add, search, remove | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
401
403
  | Save, load, view | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
@@ -575,15 +577,14 @@ index = Index(ndim=ndim, metric=CompiledMetric(
575
577
  - [x] TiDB & TiFlash: [C++](https://github.com/pingcap/tiflash), [announcement](https://www.pingcap.com/article/introduce-vector-search-indexes-in-tidb/).
576
578
  - [x] YugaByte: [C++](https://github.com/yugabyte/yugabyte-db/blob/366b9f5e3c4df3a1a17d553db41d6dc50146f488/src/yb/vector_index/usearch_wrapper.cc).
577
579
  - [x] Google: [UniSim](https://github.com/google/unisim), [RetSim](https://arxiv.org/abs/2311.17264) paper.
578
- - [x] MemGraph: [C++](https://github.com/memgraph/memgraph/blob/784dd8520f65050d033aea8b29446e84e487d091/src/storage/v2/indices/vector_index.cpp), [announcement](https://memgraph.com/blog/simplify-data-retrieval-memgraph-vector-search).
580
+ - [x] Memgraph: [C++](https://github.com/memgraph/memgraph/blob/784dd8520f65050d033aea8b29446e84e487d091/src/storage/v2/indices/vector_index.cpp), [announcement](https://memgraph.com/blog/simplify-data-retrieval-memgraph-vector-search).
579
581
  - [x] LanternDB: [C++](https://github.com/lanterndata/lantern), [Rust](https://github.com/lanterndata/lantern_extras), [docs](https://lantern.dev/blog/hnsw-index-creation).
580
582
  - [x] LangChain: [Python](https://github.com/langchain-ai/langchain/releases/tag/v0.0.257) and [JavaScript](https://github.com/hwchase17/langchainjs/releases/tag/0.0.125).
581
583
  - [x] Microsoft Semantic Kernel: [Python](https://github.com/microsoft/semantic-kernel/releases/tag/python-0.3.9.dev) and C#.
582
584
  - [x] GPTCache: [Python](https://github.com/zilliztech/GPTCache/releases/tag/0.1.29).
583
585
  - [x] Sentence-Transformers: Python [docs](https://www.sbert.net/docs/package_reference/quantization.html#sentence_transformers.quantization.semantic_search_usearch).
584
586
  - [x] Pathway: [Rust](https://github.com/pathwaycom/pathway).
585
- - [x] Memgraph: [C++ MVP](https://github.com/memgraph/memgraph/pull/2406), [C++ Stable](https://github.com/memgraph/memgraph/pull/2500), [docs](https://memgraph.com/docs/querying/vector-search)
586
- - [x] TiDB: [C++](https://github.com/pingcap/tiflash/pull/9486), [docs](https://docs.pingcap.com/tidb/stable/vector-search-index#vector-search-index)
587
+
587
588
 
588
589
  ## Citations
589
590
 
@@ -593,7 +594,7 @@ doi = {10.5281/zenodo.7949416},
593
594
  author = {Vardanian, Ash},
594
595
  title = {{USearch by Unum Cloud}},
595
596
  url = {https://github.com/unum-cloud/usearch},
596
- version = {2.20.6},
597
+ version = {2.20.9},
597
598
  year = {2023},
598
599
  month = oct,
599
600
  }
@@ -1,6 +1,6 @@
1
1
  usearch/__init__.py,sha256=jTm0I7dYLKOC5k3vQ_uodYm1gR8HxbOY5zWvTnrurcU,5954
2
2
  usearch/client.py,sha256=r7Gp4e8V6udeEU1shn7cXVRO42mufD8bsXnHdKACq-o,4137
3
- usearch/compiled.cpython-313-x86_64-linux-musl.so,sha256=twg3n1Fe2IUmpkrOurN7pcuom3yWCLDs2SC_xksbCb0,8442305
3
+ usearch/compiled.cpython-313-x86_64-linux-musl.so,sha256=WgT98YtOLMmh6iVjG-2vzNKm1pnwP2LJGKR3PPk-Mu4,8442305
4
4
  usearch/eval.py,sha256=3IBDUbyubAZs29djZUcixg0pL7IgvwqDssAEpWY-Qj0,16743
5
5
  usearch/index.py,sha256=WUcDyGSRSZKq1uAK--djtClYni8_V0vVceCxAgmjVFA,61065
6
6
  usearch/io.py,sha256=1U_O4PjKYwpEbTUVfxEDbJvu8SK7k2iDAwOwwoZe1p0,4230
@@ -8,8 +8,8 @@ usearch/numba.py,sha256=qxHLChxggVUhPChnKBwUuFXFRKHx0dcXDHoRyFxkap0,3920
8
8
  usearch/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  usearch/server.py,sha256=ExEj8Sge6yxXbTbKJMbb5APb1waHaInS52ImNoGAy0I,3679
10
10
  usearch./libgcc_s-0cd532bd.so.1,sha256=yPk0-VjyKzucjnkP3mvC0vVaua6Ln17qZUJbICcXgtA,181737
11
- usearch-2.20.6.dist-info/METADATA,sha256=7txmNamzNO1dxLxhECI1tHCyZz7_6O8QBJE3Qj5tvTg,33541
12
- usearch-2.20.6.dist-info/WHEEL,sha256=4VbEOkf4fdBUBHdV24POjoH-zuik_eIDLSImZZCAQpQ,112
13
- usearch-2.20.6.dist-info/top_level.txt,sha256=zFbid1SmQjk8RsbEgpqF7tTjgWdFvE2z0e1LQ2hKdPg,8
14
- usearch-2.20.6.dist-info/RECORD,,
15
- usearch-2.20.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
11
+ usearch-2.20.9.dist-info/METADATA,sha256=Z4BkaJ9R_eVYiC5kU0jHcS4hC63_Z8cVM4ovjfZCOSo,33058
12
+ usearch-2.20.9.dist-info/WHEEL,sha256=4VbEOkf4fdBUBHdV24POjoH-zuik_eIDLSImZZCAQpQ,112
13
+ usearch-2.20.9.dist-info/top_level.txt,sha256=zFbid1SmQjk8RsbEgpqF7tTjgWdFvE2z0e1LQ2hKdPg,8
14
+ usearch-2.20.9.dist-info/RECORD,,
15
+ usearch-2.20.9.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357