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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rootdriver
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Start from Root, Driving All Things
5
5
  Author-email: zimvir <zimvir@qq.com>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "rootdriver"
7
- version = "0.4.0"
7
+ version = "0.4.1"
8
8
  description = "Start from Root, Driving All Things"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -1,4 +1,4 @@
1
- __version__ = "0.4.0"
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",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rootdriver
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Start from Root, Driving All Things
5
5
  Author-email: zimvir <zimvir@qq.com>
6
6
  License: MIT
File without changes
File without changes