tiny_factory / deeppersona /ui /__init__.py
AUXteam's picture
Upload folder using huggingface_hub
6f8e146 verified
"""
DeepPersona UI Module
This module provides user interface components and widgets for DeepPersona,
enabling interactive experiences with DeepPersona 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 deeppersona.ui.jupyter_widgets import AgentChatJupyterWidget
# Create a chat interface with your agents
chat = AgentChatJupyterWidget(agents)
chat.display()
"""
from .jupyter_widgets import AgentChatJupyterWidget
__all__ = ['AgentChatJupyterWidget']