ray/rllib/env/__init__.py
Benjamin Black 1425cdf834
Pettingzoo environment support (#9271)
* added pettingzoo wrapper env and example

* added docs, examples for pettingzoo env support

* fixed pettingzoo env flake8, added test

* fixed pettingzoo env import

* fixed pettingzoo env import

* fixed pettingzoo import issue

* fixed pettingzoo test

* fixed linting problem

* fixed bad quotes

* future proofed pettingzoo dependency

* fixed ray init in pettingzoo env

* lint

* manual lint

Co-authored-by: Eric Liang <ekhliang@gmail.com>
2020-07-06 21:32:26 -07:00

27 lines
884 B
Python

from ray.rllib.env.base_env import BaseEnv
from ray.rllib.env.dm_env_wrapper import DMEnv
from ray.rllib.env.dm_control_wrapper import DMCEnv
from ray.rllib.env.unity3d_env import Unity3DEnv
from ray.rllib.env.pettingzoo_env import PettingZooEnv
from ray.rllib.env.multi_agent_env import MultiAgentEnv
from ray.rllib.env.external_env import ExternalEnv
from ray.rllib.env.external_multi_agent_env import ExternalMultiAgentEnv
from ray.rllib.env.vector_env import VectorEnv
from ray.rllib.env.env_context import EnvContext
from ray.rllib.env.policy_client import PolicyClient
from ray.rllib.env.policy_server_input import PolicyServerInput
__all__ = [
"BaseEnv",
"MultiAgentEnv",
"ExternalEnv",
"ExternalMultiAgentEnv",
"VectorEnv",
"EnvContext",
"DMEnv",
"DMCEnv",
"Unity3DEnv",
"PettingZooEnv",
"PolicyClient",
"PolicyServerInput",
]