Coverage for tinytroupe / environment / __init__.py: 0%

6 statements  

« prev     ^ index     » next       coverage.py v7.13.4, created at 2026-02-28 17:48 +0000

1""" 

2Environments provide a structured way to define the world in which the 

3agents interact with each other as well as external entities (e.g., search engines). 

4""" 

5 

6import logging 

7logger = logging.getLogger("tinytroupe") 

8 

9from tinytroupe import default 

10 

11########################################################################### 

12# Exposed API 

13########################################################################### 

14from tinytroupe.environment.tiny_world import TinyWorld 

15from tinytroupe.environment.tiny_social_network import TinySocialNetwork 

16 

17__all__ = ["TinyWorld", "TinySocialNetwork"]