Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/CyberBattleSim
Path: blob/main/cyberbattle/agents/__init__.py
597 views
1
# Copyright (c) Microsoft Corporation.
2
# Licensed under the MIT License.
3
4
"""
5
This module contains all the agents to be used as baselines on the CyberBattle env.
6
7
"""
8
9
from .baseline.learner import Learner, AgentWrapper, EnvironmentBounds
10
11
__all__ = ("Learner", "AgentWrapper", "EnvironmentBounds")
12
13