29 lines
595 B
Rust
29 lines
595 B
Rust
|
|
// poc-memory library — shared modules for all binaries
|
||
|
|
//
|
||
|
|
// Re-exports modules so that memory-search and other binaries
|
||
|
|
// can call library functions directly instead of shelling out.
|
||
|
|
|
||
|
|
pub mod config;
|
||
|
|
pub mod store;
|
||
|
|
pub mod util;
|
||
|
|
pub mod llm;
|
||
|
|
pub mod digest;
|
||
|
|
pub mod audit;
|
||
|
|
pub mod enrich;
|
||
|
|
pub mod consolidate;
|
||
|
|
pub mod graph;
|
||
|
|
pub mod search;
|
||
|
|
pub mod similarity;
|
||
|
|
pub mod migrate;
|
||
|
|
pub mod neuro;
|
||
|
|
pub mod query;
|
||
|
|
pub mod spectral;
|
||
|
|
pub mod lookups;
|
||
|
|
pub mod daemon;
|
||
|
|
pub mod fact_mine;
|
||
|
|
pub mod knowledge;
|
||
|
|
|
||
|
|
pub mod memory_capnp {
|
||
|
|
include!(concat!(env!("OUT_DIR"), "/schema/memory_capnp.rs"));
|
||
|
|
}
|