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

6 statements  

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

1""" 

2Tools allow agents to accomplish specialized tasks. 

3""" 

4 

5import logging 

6logger = logging.getLogger("tinytroupe") 

7 

8########################################################################### 

9# Exposed API 

10########################################################################### 

11from tinytroupe.tools.tiny_tool import TinyTool 

12from tinytroupe.tools.tiny_word_processor import TinyWordProcessor 

13from tinytroupe.tools.tiny_calendar import TinyCalendar 

14 

15__all__ = ["TinyTool", "TinyWordProcessor", "TinyCalendar"]