Skip to main content

funcvec_core/
lib.rs

1mod cache;
2mod discover;
3mod embeddings;
4mod extract;
5mod lsp_client;
6mod models;
7mod normalize;
8mod report;
9mod score;
10
11pub use embeddings::{ProviderKind, default_nomic_model};
12pub use models::{
13    Candidate, EmbeddingStats, EvalMatrixReport, EvalReport, FunctionRecord, FunctionSummary,
14    ModelEvalResult, ModelEvalStatus, OutputFormat, Report, ReportConfig, ScoreBreakdown,
15    default_ollama_host,
16};
17pub use report::{
18    format_eval, format_eval_matrix, format_report, run_eval, run_eval_matrix, run_report,
19};