File size: 598 Bytes
6f8e146
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""
Environments provide a structured way to define the world in which the
agents interact with each other as well as external entities (e.g., search engines).
"""

import logging
logger = logging.getLogger("deeppersona")

from deeppersona import default

###########################################################################
# Exposed API
###########################################################################
from deeppersona.environment.deep_world import DeepWorld
from deeppersona.environment.deep_social_network import DeepSocialNetwork

__all__ = ["DeepWorld", "DeepSocialNetwork"]