relayrl_framework 0.5.0-alpha

A distributed, system-oriented multi-agent reinforcement learning framework.
pub mod agent;
pub(crate) mod runtime {
    pub(crate) mod actor;
    pub(crate) mod coordination {
        pub(crate) mod coordinator;
        pub(crate) mod lifecycle_manager;
        pub(crate) mod scale_manager;
        pub(crate) mod state_manager;
    }
    pub(crate) mod router;
    pub(crate) mod router_dispatcher;

    pub(crate) mod data {
        #[cfg(any(feature = "postgres_db", feature = "sqlite_db"))]
        pub(crate) mod database;
        #[cfg(any(feature = "async_transport", feature = "sync_transport"))]
        pub(crate) mod transport;
    }
}