vectx-api 0.2.7

REST and gRPC API for vectX vector database - Qdrant-compatible endpoints
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() -> Result<(), Box<dyn std::error::Error>> {
    tonic_build::configure()
        .build_server(true)
        .build_client(false)
        .compile(
            &["proto/vectx.proto"],
            &["proto"],
        )?;
    Ok(())
}