File size: 594 Bytes
6a42990
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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("tinytroupe")

from tinytroupe import default

###########################################################################
# Exposed API
###########################################################################
from tinytroupe.environment.tiny_world import TinyWorld
from tinytroupe.environment.tiny_social_network import TinySocialNetwork

__all__ = ["TinyWorld", "TinySocialNetwork"]