Skip to main content

Crate seekr_code

Crate seekr_code 

Source
Expand description

§Seekr

A semantic code search engine, smarter than grep.

Seekr supports three search modes:

  • Text regex: High-performance regular expression matching
  • Semantic vector: ONNX-based local embedding + HNSW approximate nearest neighbor search
  • AST pattern: Function signature pattern matching via Tree-sitter

100% local execution — no data leaves your machine.

Modules§

config
Configuration management for Seekr.
embedder
Embedding engine module.
error
Unified error types for Seekr.
index
Index engine module.
parser
Code parser module.
scanner
File scanner module.
search
Search engine module.
server
Server module.

Constants§

INDEX_VERSION
Current index format version. Increment this when the on-disk index format changes. v2: switched serialization from JSON to bincode for faster save/load.
VERSION
Seekr version string (from Cargo.toml).