sphereql-embed 0.3.0

Vector embedding projection engine for sphereQL
Documentation
[package]
name = "sphereql-embed"
description = "Vector embedding projection engine for sphereQL"
edition.workspace = true
version.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"

[features]
# When active, SphereQLPipeline retains a copy of the original high-dimensional
# embeddings alongside the projected positions, enabling pairwise cosine
# similarity queries and nearest-by-embedding lookups. Disabled by default
# because it doubles peak memory (one Vec<f64> per item at full dimensionality).
retain-embeddings = []

[dependencies]
sphereql-core = { version = "0.3.0", path = "../sphereql-core" }
sphereql-index = { version = "0.3.0", path = "../sphereql-index" }
sphereql-layout = { version = "0.3.0", path = "../sphereql-layout" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
rayon = { workspace = true }
indexmap = "2"
tempfile = "3"
tracing = "0.1"

[dev-dependencies]
approx = "0.5"
sphereql-corpus = { path = "../sphereql-corpus" }