Spaces:
Runtime error
Runtime error
File size: 686 Bytes
6a42990 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | """
TinyTroupe UI Module
This module provides user interface components and widgets for TinyTroupe,
enabling interactive experiences with TinyTroupe agents and environments.
The module is organized into different sub-modules based on the UI framework:
- jupyter_widgets: Interactive widgets for Jupyter notebooks
- web: Web-based interfaces (future)
- cli: Command-line interfaces (future)
Example usage:
from tinytroupe.ui.jupyter_widgets import AgentChatJupyterWidget
# Create a chat interface with your agents
chat = AgentChatJupyterWidget(agents)
chat.display()
"""
from .jupyter_widgets import AgentChatJupyterWidget
__all__ = ['AgentChatJupyterWidget']
|