meshagent-tools 0.19.2__tar.gz → 0.19.4__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.
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/CHANGELOG.md +6 -0
- {meshagent_tools-0.19.2/meshagent_tools.egg-info → meshagent_tools-0.19.4}/PKG-INFO +2 -2
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/database.py +2 -3
- meshagent_tools-0.19.4/meshagent/tools/version.py +1 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4/meshagent_tools.egg-info}/PKG-INFO +2 -2
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent_tools.egg-info/requires.txt +1 -1
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/pyproject.toml +1 -1
- meshagent_tools-0.19.2/meshagent/tools/version.py +0 -1
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/LICENSE +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/MANIFEST.in +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/README.md +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/__init__.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/blob.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/config.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/discovery.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/document_tools.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/hosting.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/multi_tool.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/pydantic.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/storage.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/strict_schema.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/tool.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/toolkit.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent/tools/web_toolkit.py +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent_tools.egg-info/SOURCES.txt +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent_tools.egg-info/dependency_links.txt +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent_tools.egg-info/top_level.txt +0 -0
- {meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/setup.cfg +0 -0
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## [0.19.4]
|
|
2
|
+
- Stability
|
|
3
|
+
|
|
4
|
+
## [0.19.3]
|
|
5
|
+
- Stability
|
|
6
|
+
|
|
1
7
|
## [0.19.2]
|
|
2
8
|
- Add boolean data type support plus `nullable`/`metadata` on schema types and generated JSON Schema.
|
|
3
9
|
- BREAKING: OpenAI proxy client creation now takes an optional `http_client` (request logging is configured via a separate logging client helper).
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-tools
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.4
|
|
4
4
|
Summary: Tools for Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -12,7 +12,7 @@ License-File: LICENSE
|
|
|
12
12
|
Requires-Dist: pyjwt~=2.10
|
|
13
13
|
Requires-Dist: pytest~=8.4
|
|
14
14
|
Requires-Dist: pytest-asyncio~=0.26
|
|
15
|
-
Requires-Dist: meshagent-api~=0.19.
|
|
15
|
+
Requires-Dist: meshagent-api~=0.19.4
|
|
16
16
|
Requires-Dist: aiohttp~=3.10
|
|
17
17
|
Requires-Dist: opentelemetry-distro~=0.54b1
|
|
18
18
|
Dynamic: license-file
|
|
@@ -86,8 +86,7 @@ class DeleteRowsTool(Tool):
|
|
|
86
86
|
|
|
87
87
|
for k, v in schema.items():
|
|
88
88
|
input_schema["required"].append(k)
|
|
89
|
-
schema = v.to_json_schema()
|
|
90
|
-
schema["type"] = [schema["type"], "null"]
|
|
89
|
+
schema["type"] = v.to_json_schema()
|
|
91
90
|
input_schema["properties"][k] = schema
|
|
92
91
|
|
|
93
92
|
super().__init__(
|
|
@@ -191,7 +190,7 @@ class SearchTool(Tool):
|
|
|
191
190
|
for k, v in schema.items():
|
|
192
191
|
input_schema["required"].append(k)
|
|
193
192
|
schema = v.to_json_schema()
|
|
194
|
-
schema["type"] =
|
|
193
|
+
schema["type"] = schema["type"]
|
|
195
194
|
input_schema["properties"][k] = schema
|
|
196
195
|
|
|
197
196
|
super().__init__(
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.19.4"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: meshagent-tools
|
|
3
|
-
Version: 0.19.
|
|
3
|
+
Version: 0.19.4
|
|
4
4
|
Summary: Tools for Meshagent
|
|
5
5
|
License-Expression: Apache-2.0
|
|
6
6
|
Project-URL: Documentation, https://docs.meshagent.com
|
|
@@ -12,7 +12,7 @@ License-File: LICENSE
|
|
|
12
12
|
Requires-Dist: pyjwt~=2.10
|
|
13
13
|
Requires-Dist: pytest~=8.4
|
|
14
14
|
Requires-Dist: pytest-asyncio~=0.26
|
|
15
|
-
Requires-Dist: meshagent-api~=0.19.
|
|
15
|
+
Requires-Dist: meshagent-api~=0.19.4
|
|
16
16
|
Requires-Dist: aiohttp~=3.10
|
|
17
17
|
Requires-Dist: opentelemetry-distro~=0.54b1
|
|
18
18
|
Dynamic: license-file
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.19.2"
|
|
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
|
|
File without changes
|
{meshagent_tools-0.19.2 → meshagent_tools-0.19.4}/meshagent_tools.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|