zeph 0.19.0

Lightweight AI agent with hybrid inference, skills-first architecture, and multi-channel I/O
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: 2026 Andrei G <bug-ops>
// SPDX-License-Identifier: MIT OR Apache-2.0

pub(crate) mod agents;
#[cfg(feature = "bench")]
pub(crate) mod bench;
pub(crate) mod classifiers;
pub(crate) mod db;
pub(crate) mod ingest;
pub(crate) mod memory;
pub(crate) mod migrate;
pub(crate) mod router;
#[cfg(feature = "scheduler")]
pub(crate) mod schedule;
#[cfg(feature = "acp")]
pub(crate) mod sessions;
pub(crate) mod skill;
pub(crate) mod vault;