first commit

This commit is contained in:
DigiJ
2026-03-13 12:56:43 -07:00
commit 159cf9fcfe
309 changed files with 64584 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
"""
This module provides the main entry point for the agentdhal_agentchat package.
It includes logger names for trace and event logs, and retrieves the package version.
"""
import importlib.metadata
TRACE_LOGGER_NAME = "agentdhal_agentchat"
"""Logger name for trace logs."""
EVENT_LOGGER_NAME = "agentdhal_agentchat.events"
"""Logger name for event logs."""
__version__ = importlib.metadata.version("agentdhal_agentchat")