rab-agent 0.1.6

rab is a lightweight, extensible, Rust-based coding agent.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod model;
pub mod repo;
pub mod storage;

pub use model::{
    ActiveToolsChangeEntry, BranchSummaryEntry, CURRENT_SESSION_VERSION, CompactionEntry,
    CustomEntry, CustomMessageEntry, LabelEntry, LeafEntry, MessageEntry, ModelChangeEntry,
    NewSessionOptions, Session, SessionContext, SessionEntry, SessionError, SessionHeader,
    SessionInfo, SessionInfoEntry, SessionManager, SessionTreeNode, ThinkingLevelChangeEntry,
    append_entry_to_file, build_session_context, delete_session, encode_cwd_for_dir,
    find_most_recent_session, fork_session, generate_entry_id, get_default_session_dir,
    list_sessions, load_entries_from_file, load_session_from_file, load_session_info,
    parse_session_entry_line, parse_session_header_line, read_session_header,
    write_entries_to_file,
};
pub use repo::{DefaultSessionRepo, SessionRepo};
pub use storage::{InMemorySessionStorage, JsonlSessionStorage, SessionMetadata, SessionStorage};