llm-dialog-manager 0.4.7__py3-none-any.whl → 0.5.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,20 @@
1
- from .chat_history import ChatHistory
1
+ """
2
+ LLM Dialog Manager
3
+
4
+ A modular framework for building conversational AI applications with
5
+ support for multiple LLM providers.
6
+ """
7
+
8
+ __version__ = "0.5.3"
9
+
2
10
  from .agent import Agent
11
+ from .chat_history import ChatHistory
12
+ from .key_manager import key_manager
13
+
14
+ # Import factory functions for easy access
15
+ from .clients import get_client
16
+ from .formatters import get_formatter
3
17
 
4
- __version__ = "0.4.7"
18
+ # Setup environment by default
19
+ from .utils.environment import load_env_vars
20
+ load_env_vars()