basemyai 0.1.0

Local memory engine for AI agents: 4 memory layers, temporal RAG, per-agent isolation, mandatory encryption. Built on basemyai-core.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod embedder;
pub mod llm;

pub use embedder::{
    BASELINE_DIM, BASELINE_MODEL_ID, HardwareProfile, ModelProvision, detect_hardware, provision,
    provision_with_progress,
};
pub use llm::{
    AnythingLlmBackend, BackendKind, KNOWN_MODELS, KnownModel, LlmOption, LlmProvision, OllamaBackend,
    OpenAiCompatBackend, anythingllm_from_env, best_llm_option, choose_llm, detect_llm_options,
    propose_models_to_install,
};