File size: 144 Bytes
3e2038a
d678220
3e2038a
 
 
 
 
 
1
2
3
4
5
6
7
8
9
# All supported agents
from MCAgent import MCAgent
from DPAgent import DPAgent

AGENTS_MAP = {
    "MCAgent": MCAgent,
    "DPAgent": DPAgent
}