File size: 682 Bytes
6a0e448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from typing import Union

from .environment_base import (
    Action,
    BaseEnvironment,
    BaseEnvironmentConfig,
    Environments,
    Event,
    EventType,
    Observation,
)
from .webbrowser import (
    WebBrowserEnvironment,
    WebBrowserEnvironmentConfig,
)

EnvironmentConfigTypes = Union[*list(Environments._environment_config_registry.values())]
EnvironmentTypes = Union[*list(Environments._environment_registry.values())]


__all__ = [
    "Action",
    "BaseEnvironment",
    "BaseEnvironmentConfig",
    "EnvironmentConfigTypes",
    "Environments",
    "Event",
    "EventType",
    "Observation",
    "WebBrowserEnvironment",
    "WebBrowserEnvironmentConfig",
]