Spaces:
Sleeping
Sleeping
File size: 152 Bytes
3e2038a |
1 2 3 4 5 6 7 8 9 |
# All supported agents
from MonteCarloAgent import MCAgent
from DPAgent import DPAgent
AGENTS_MAP = {
"MCAgent": MCAgent,
"DPAgent": DPAgent
}
|