adk-session 0.7.0

Session management and state persistence for Rust Agent Development Kit (ADK-Rust) agents
Documentation
1
2
3
4
5
6
7
8
9
10
mod common;

use adk_session::InMemorySessionService;

#[tokio::test]
async fn test_inmemory_service_contract() {
    let service = InMemorySessionService::new();
    common::session_contract::assert_session_contract(&service, "contract_app", "contract_app_2")
        .await;
}