Octen Embedding 8B. Qwen3-based decoder, 4096-dimensional, last-token pooling.
Cosine similarity vs the upstream sentence-transformers reference on a fixed
test set (text):
1# Download
2huggingface-cli download cstr/octen-8b-GGUF octen-8b-q4_k.gguf --local-dir .
3
4# Run with CrispEmbed
5./crispembed -m octen-8b-q4_k.gguf "Hello world"
6
7# Or with auto-download
8./crispembed -m octen-8b "Hello world"
Verified bit-identical to HuggingFace sentence-transformers (cosine similarity >= 0.999 on test texts).
CrispEmbed is a lightweight C/C++ text embedding inference engine using ggml.
No Python runtime, no ONNX. Supports BERT, XLM-R, Qwen3, and Gemma3 architectures.
1# Build CrispEmbed
2git clone https://github.com/CrispStrobe/CrispEmbed
3cd CrispEmbed
4cmake -S . -B build && cmake --build build -j
5
6# Encode
7./build/crispembed -m octen-8b-q4_k.gguf "query text"
8
9# Server mode
10./build/crispembed-server -m octen-8b-q4_k.gguf --port 8080
11curl -X POST http://localhost:8080/v1/embeddings \
12 -d '{"input": ["Hello world"], "model": "octen-8b"}'