relayrl_framework 0.5.0-alpha.3

A distributed, system-oriented multi-agent reinforcement learning framework.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 {
        pub(crate) mod file_sink;
        #[cfg(any(feature = "nats-transport", feature = "zmq-transport"))]
        pub(crate) mod transport_sink;
    }
}