qdrant_edge_flutter 0.1.0
qdrant_edge_flutter: ^0.1.0 copied to clipboard
On-device vector search for Flutter, powered by the qdrant-edge Rust crate with built-in BM25 text embedding.
Changelog #
0.1.0 #
- Initial release: an on-device Qdrant client for Flutter via
dart:ffiover theqdrant-edgeRust engine. QdrantEdgeclient:createShard/loadShard,createBm25,createDense,openTextIndex, snapshot helpers.Shardwith the full surface:upsert,deletePoints,search,query(prefetch + RRF/DBSF fusion),retrieve,scroll,count,info,facet, payload ops, field indexes, runtime named vectors, HNSW/optimizer config,flush,optimize,close. Complex arguments are plain DartMap/Listpassed to the engine as JSON.- On-device embedders:
Bm25(sparse, no model to ship) andDense(MiniLM viacandle, optional).TextIndexconvenience for the add-text/search-text flow (lexical, or hybrid with a model). - Prebuilt native binaries ship in the package (iOS dynamic
QdrantEdgeFFI.xcframework, Android.sofor arm64-v8a + x86_64, macOS.a) — no Rust toolchain required to consume the plugin. - Platforms: Android, iOS, macOS.