1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! # search-semantically
//!
//! Embeddable semantic code search with multi-signal POEM ranking.
//!
//! Provides local, incremental code search combining BM25 full-text search,
//! vector similarity via ONNX embeddings, path matching, symbol matching,
//! import graph propagation, and git recency — ranked using Pareto-optimal
//! Election Method (POEM).
//!
//! # Quick start
//!
//! ```no_run
//! use search_semantically::SearchEngine;
//! use std::path::PathBuf;
//!
//! let engine = SearchEngine::new(PathBuf::from("/path/to/project"));
//! let results = engine.search("database connection handler", 20, None).unwrap();
//! println!("{results}");
//! ```
pub use StoredChunk;
pub use SearchEngine;
pub use ;
pub use QueryType;
pub use MetricScores;
pub use FileType;
pub use TextChunk;