mod artifact;
mod cache;
mod codegraph;
mod context;
mod extract;
mod git;
#[cfg(feature = "inference")]
mod infer;
mod markers;
mod migrations;
mod model;
#[cfg(feature = "models")]
mod models;
mod provenance;
mod query;
mod store;
mod sync;
pub use artifact::{ARTIFACT_SCHEMA, GraphArtifact};
pub use cache::{CacheError, ObjectCache};
pub use codegraph::{ORACLE_SCHEMA, OracleError, OracleReport, compare as compare_codegraph};
pub use context::{
ContextRefresh, NodeContext, build_context, context, dependents, refresh_contexts,
};
pub use extract::{Extractor, FileNodeExtractor, IngestConfig, Registry, RustExtractor};
pub use git::{BlobRef, ChangedFile, GitError, Repo};
#[cfg(feature = "inference")]
pub use infer::{
DuplicateConfig, DuplicatePair, DuplicateReport, EMBED_REF, Embedder, HashEmbedder,
InferenceConfig, duplicates, duplicates_with, embed, infer_edges, infer_edges_with, similarity,
};
pub use model::{Direction, Edge, EdgeKind, FactSet, Node, NodeKind, Span};
#[cfg(feature = "models")]
pub use models::{
DownloadError, ModelFile, ModelKind, ModelRole, ModelSpec, ModelVariant, Platform, REGISTRY,
ResourceTier, download_verified, ensure_model_dir, find as find_model, is_installed, model_dir,
set_model_store, sha256_hex, store_root, verify_sha256,
};
pub use provenance::Provenance;
pub use query::{
DebtItem, DebtReport, EdgeRef, Explanation, Listing, NodeSummary, Path, PathHop, SCHEMA,
SearchHit, debt, explain, list_kind, path, search,
};
pub use store::{ImportApplied, Store, StoreError};
pub use sync::{SyncError, SyncReport, sync, sync_index, sync_worktree};