adk-rs 0.6.0

Rust port of the Google Agent Development Kit (ADK).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Pluggable services: session, memory, artifact, and credential.
//!
//! The in-memory backends in [`mem`] are always available. The filesystem
//! ([`fs`], feature `fs`) and SQL ([`sql`], features `sqlite` / `postgres`)
//! backends are gated behind cargo features.

pub mod mem;

#[cfg(feature = "fs")]
pub mod fs;

#[cfg(any(feature = "sqlite", feature = "postgres"))]
pub mod sql;