mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00

* 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>
27 lines
884 B
Python
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",
|
|
]
|