kaiba 0.5.0

Kaiba domain library - Core types and interfaces for AI persona system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Service Ports
//!
//! Abstract interfaces for external services.
//! These are "Tei" (体) implementations - execution interfaces
//! that can be swapped between different providers.

mod embedding;
mod llm_provider;
mod web_search;

pub use embedding::*;
pub use llm_provider::*;
pub use web_search::*;