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
14
15
//! In-memory implementations of the adk-rs service traits. Use for tests,
//! quickstart scripts, and the dev server. Not durable across process
//! restarts.

mod artifact;
mod credential;
mod memory;
mod session;
mod vector_memory;

pub use artifact::InMemoryArtifactService;
pub use credential::InMemoryCredentialService;
pub use memory::InMemoryMemoryService;
pub use session::InMemorySessionService;
pub use vector_memory::VectorMemoryService;