gllm 0.3.2

Pure Rust library for local text embeddings and reranking with 26 supported models
Documentation
[[bin]]
name = "stress_test"
path = "stress_test.rs"

[[bin]]
name = "test_models"
path = "test_models.rs"

[dependencies.burn]
default-features = false
features = ["std", "wgpu", "candle", "ndarray"]
version = "0.20.0-pre.3"

[dependencies.burn-import]
default-features = false
features = ["safetensors"]
version = "0.20.0-pre.3"

[dependencies.dirs]
version = "5"

[dependencies.hf-hub]
default-features = false
features = ["ureq", "rustls-tls"]
version = "0.4.3"

[dependencies.log]
version = "0.4"

[dependencies.safetensors]
version = "0.4"

[dependencies.serde]
features = ["derive"]
version = "1"

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokenizers]
default-features = false
features = ["fancy-regex"]
version = "0.22.1"

[dependencies.tokio]
features = ["rt-multi-thread", "macros", "sync"]
optional = true
version = "1"

[dev-dependencies.tempfile]
version = "3"

[features]
cpu = []
tokio = ["dep:tokio"]
wgpu = []

[lib]
name = "gllm"
path = "src/lib.rs"

[package]
authors = ["gllm contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "science", "text-processing"]
description = "Pure Rust library for local text embeddings and reranking with 26 supported models"
edition = "2021"
homepage = "https://github.com/putao520/gllm"
keywords = ["embeddings", "reranking", "nlp", "ml", "rust"]
license = "MIT"
name = "gllm"
readme = "README.md"
repository = "https://github.com/putao520/gllm"
version = "0.3.2"

[[test]]
name = "api"
path = "tests/api.rs"

[[test]]
name = "integration"
path = "tests/integration.rs"