tiny_factory / environment /__init__.py
root
Import from HF Space harvesthealth/tiny_factory
6a42990
"""
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"]