mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-26 02:11:24 +00:00

* Improve init docs * Add docstring for messages * Add docstring for agents * Add docstring for teams * Add doc string for conditions * Add docs for ui * Update module docstring in __init__.py * Clarify BaseChatAgent description in __init__.py * Fix formatting
15 lines
418 B
Python
15 lines
418 B
Python
"""
|
|
This module provides the main entry point for the autogen_agentchat package.
|
|
It includes logger names for trace and event logs, and retrieves the package version.
|
|
"""
|
|
|
|
import importlib.metadata
|
|
|
|
TRACE_LOGGER_NAME = "autogen_agentchat"
|
|
"""Logger name for trace logs."""
|
|
|
|
EVENT_LOGGER_NAME = "autogen_agentchat.events"
|
|
"""Logger name for event logs."""
|
|
|
|
__version__ = importlib.metadata.version("autogen_agentchat")
|