ai-agent 0.13.4

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
use std::collections::HashMap;

pub type SSHSession = HashMap<String, serde_json::Value>;

pub async fn create_ssh_session() -> SSHSession {
    HashMap::new()
}