AUXteam's picture
Upload folder using huggingface_hub
c1d0c23 verified
"""
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"]