goosedump 0.12.15

Coding agent context data browser
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (C) Jarkko Sakkinen 2026

//! Session, memory, search, and local-inference engine.

pub(crate) mod behavior;
pub(crate) mod compact;
pub(crate) mod context;
pub(crate) mod display;
pub(crate) mod emit;
pub(crate) mod format;
pub(crate) mod import;
pub(crate) mod index;
pub(crate) mod memory;
pub(crate) mod message;
pub(crate) mod model;
mod provider;
pub(crate) mod query;
pub(crate) mod resolver;
pub(crate) mod search;
pub(crate) mod text;

pub(crate) use provider::{Client, StorageKind};