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

2 statements  

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

1""" 

2TinyTroupe UI Module 

3 

4This module provides user interface components and widgets for TinyTroupe, 

5enabling interactive experiences with TinyTroupe agents and environments. 

6 

7The module is organized into different sub-modules based on the UI framework: 

8 

9- jupyter_widgets: Interactive widgets for Jupyter notebooks 

10- web: Web-based interfaces (future) 

11- cli: Command-line interfaces (future) 

12 

13Example usage: 

14 from tinytroupe.ui.jupyter_widgets import AgentChatJupyterWidget 

15  

16 # Create a chat interface with your agents 

17 chat = AgentChatJupyterWidget(agents) 

18 chat.display() 

19""" 

20 

21from .jupyter_widgets import AgentChatJupyterWidget 

22 

23__all__ = ['AgentChatJupyterWidget']