paladin-ai 0.4.3

Enterprise AI orchestration framework with multi-agent coordination patterns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod file_content_repository;
/// SQLite content/user repositories: re-exported from `paladin-storage` when the
/// `storage-sqlite` feature is active; falls back to the facade-local copy otherwise.
#[cfg(feature = "storage-sqlite")]
pub use paladin_storage::sqlite_content_repository;
#[cfg(not(feature = "storage-sqlite"))]
pub mod sqlite_content_repository;
#[cfg(feature = "storage-sqlite")]
pub use paladin_storage::sqlite_user_repository;
#[cfg(not(feature = "storage-sqlite"))]
pub mod sqlite_user_repository;
/// MySQL content repository: available only when the `storage-mysql` feature is active.
#[cfg(feature = "storage-mysql")]
pub use paladin_storage::mysql_content_repository;