tiny_factory / tools /__init__.py
root
Import from HF Space harvesthealth/tiny_factory
6a42990
"""
Tools allow agents to accomplish specialized tasks.
"""
import logging
logger = logging.getLogger("tinytroupe")
###########################################################################
# Exposed API
###########################################################################
from tinytroupe.tools.tiny_tool import TinyTool
from tinytroupe.tools.tiny_word_processor import TinyWordProcessor
from tinytroupe.tools.tiny_calendar import TinyCalendar
__all__ = ["TinyTool", "TinyWordProcessor", "TinyCalendar"]