rootdriver 0.4.0__tar.gz → 0.4.1__tar.gz
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.
- {rootdriver-0.4.0 → rootdriver-0.4.1}/PKG-INFO +1 -1
- {rootdriver-0.4.0 → rootdriver-0.4.1}/pyproject.toml +1 -1
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver/__init__.py +4 -1
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver.egg-info/PKG-INFO +1 -1
- {rootdriver-0.4.0 → rootdriver-0.4.1}/README.md +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver/agent.py +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver/constants.py +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver/conversation.py +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver/engine.py +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver/exception.py +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver.egg-info/SOURCES.txt +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver.egg-info/dependency_links.txt +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver.egg-info/requires.txt +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/rootdriver.egg-info/top_level.txt +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/setup.cfg +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/tests/test_base_tool.py +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/tests/test_conversation.py +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/tests/test_state.py +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/tests/test_tool.py +0 -0
- {rootdriver-0.4.0 → rootdriver-0.4.1}/tests/test_tool_async.py +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
__version__ = "0.4.
|
|
1
|
+
__version__ = "0.4.1"
|
|
2
2
|
__author__ = "zimvir"
|
|
3
3
|
__email__ = "zimvir@qq.com"
|
|
4
4
|
|
|
@@ -6,6 +6,7 @@ from .agent import Agent
|
|
|
6
6
|
from .engine import Engine
|
|
7
7
|
from .conversation import Conversation
|
|
8
8
|
from .state import State
|
|
9
|
+
from . import types
|
|
9
10
|
from . import db
|
|
10
11
|
from .llm import LLM
|
|
11
12
|
from .llm.base_adapter import BaseAdapter
|
|
@@ -36,6 +37,7 @@ __all__ = [
|
|
|
36
37
|
"Engine",
|
|
37
38
|
"Conversation",
|
|
38
39
|
"State",
|
|
40
|
+
"types",
|
|
39
41
|
"db",
|
|
40
42
|
"LLM",
|
|
41
43
|
"BaseAdapter",
|
|
@@ -46,6 +48,7 @@ __all__ = [
|
|
|
46
48
|
"Message",
|
|
47
49
|
"ToolDefinition",
|
|
48
50
|
"ToolCall",
|
|
51
|
+
|
|
49
52
|
"LLMError",
|
|
50
53
|
"LLMInvokeError",
|
|
51
54
|
"LLMResponseError",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|