seekr-code 1.0.1

A semantic code search engine, smarter than grep. Supports text regex + semantic vector + AST pattern search, 100% local.
Documentation
1
2
3
4
5
6
7
8
//! Embedding engine module.
//!
//! Provides trait-based embedding abstraction with ONNX Runtime backend.
//! Supports batch embedding computation for throughput optimization.

pub mod batch;
pub mod onnx;
pub mod traits;