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
« prev ^ index » next coverage.py v7.13.4, created at 2026-02-28 17:48 +0000
1"""
2TinyTroupe UI Module
4This module provides user interface components and widgets for TinyTroupe,
5enabling interactive experiences with TinyTroupe agents and environments.
7The module is organized into different sub-modules based on the UI framework:
9- jupyter_widgets: Interactive widgets for Jupyter notebooks
10- web: Web-based interfaces (future)
11- cli: Command-line interfaces (future)
13Example usage:
14 from tinytroupe.ui.jupyter_widgets import AgentChatJupyterWidget
16 # Create a chat interface with your agents
17 chat = AgentChatJupyterWidget(agents)
18 chat.display()
19"""
21from .jupyter_widgets import AgentChatJupyterWidget
23__all__ = ['AgentChatJupyterWidget']