tooluniverse 1.0.3__py3-none-any.whl → 1.0.5__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.
Potentially problematic release.
This version of tooluniverse might be problematic. Click here for more details.
- tooluniverse/__init__.py +17 -5
- tooluniverse/agentic_tool.py +268 -330
- tooluniverse/compose_scripts/output_summarizer.py +21 -15
- tooluniverse/data/agentic_tools.json +2 -2
- tooluniverse/data/odphp_tools.json +354 -0
- tooluniverse/data/output_summarization_tools.json +2 -2
- tooluniverse/default_config.py +1 -0
- tooluniverse/llm_clients.py +570 -0
- tooluniverse/mcp_tool_registry.py +3 -3
- tooluniverse/odphp_tool.py +226 -0
- tooluniverse/output_hook.py +92 -3
- tooluniverse/remote/boltz/boltz_mcp_server.py +2 -2
- tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +2 -2
- tooluniverse/smcp.py +204 -112
- tooluniverse/smcp_server.py +23 -20
- tooluniverse/test/list_azure_openai_models.py +210 -0
- tooluniverse/test/test_agentic_tool_azure_models.py +91 -0
- tooluniverse/test/test_api_key_validation_min.py +64 -0
- tooluniverse/test/test_claude_sdk.py +86 -0
- tooluniverse/test/test_global_fallback.py +288 -0
- tooluniverse/test/test_hooks_direct.py +219 -0
- tooluniverse/test/test_odphp_tool.py +166 -0
- tooluniverse/test/test_openrouter_client.py +288 -0
- tooluniverse/test/test_stdio_hooks.py +285 -0
- tooluniverse/test/test_tool_finder.py +1 -1
- {tooluniverse-1.0.3.dist-info → tooluniverse-1.0.5.dist-info}/METADATA +101 -74
- {tooluniverse-1.0.3.dist-info → tooluniverse-1.0.5.dist-info}/RECORD +31 -19
- tooluniverse-1.0.5.dist-info/licenses/LICENSE +201 -0
- tooluniverse-1.0.3.dist-info/licenses/LICENSE +0 -21
- {tooluniverse-1.0.3.dist-info → tooluniverse-1.0.5.dist-info}/WHEEL +0 -0
- {tooluniverse-1.0.3.dist-info → tooluniverse-1.0.5.dist-info}/entry_points.txt +0 -0
- {tooluniverse-1.0.3.dist-info → tooluniverse-1.0.5.dist-info}/top_level.txt +0 -0
tooluniverse/__init__.py
CHANGED
|
@@ -215,10 +215,15 @@ if not LAZY_LOADING_ENABLED:
|
|
|
215
215
|
GWASAssociationsForStudy,
|
|
216
216
|
)
|
|
217
217
|
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
218
|
+
from .mcp_client_tool import MCPClientTool, MCPAutoLoaderTool
|
|
219
|
+
from .admetai_tool import ADMETAITool
|
|
220
|
+
from .alphafold_tool import AlphaFoldRESTTool
|
|
221
|
+
from .odphp_tool import (
|
|
222
|
+
ODPHPMyHealthfinder,
|
|
223
|
+
ODPHPItemList,
|
|
224
|
+
ODPHPTopicSearch,
|
|
225
|
+
ODPHPOutlinkFetch,
|
|
226
|
+
)
|
|
222
227
|
else:
|
|
223
228
|
# With lazy loading, create lazy import proxies that import modules only when accessed
|
|
224
229
|
MonarchTool = _LazyImportProxy("restful_tool", "MonarchTool")
|
|
@@ -296,7 +301,10 @@ else:
|
|
|
296
301
|
MCPAutoLoaderTool = _LazyImportProxy("mcp_client_tool", "MCPAutoLoaderTool")
|
|
297
302
|
ADMETAITool = _LazyImportProxy("admetai_tool", "ADMETAITool")
|
|
298
303
|
AlphaFoldRESTTool = _LazyImportProxy("alphafold_tool", "AlphaFoldRESTTool")
|
|
299
|
-
|
|
304
|
+
ODPHPItemList = _LazyImportProxy("odphp_tool", "ODPHPItemList")
|
|
305
|
+
ODPHPMyHealthfinder = _LazyImportProxy("odphp_tool", "ODHPHPMyHealthfinder")
|
|
306
|
+
ODPHPTopicSearch = _LazyImportProxy("odphp_tool", "ODPHPTopicSearch")
|
|
307
|
+
ODPHPOutlinkFetch = _LazyImportProxy("odphp_tool", "ODPHPOutlinkFetch")
|
|
300
308
|
|
|
301
309
|
__all__ = [
|
|
302
310
|
"__version__",
|
|
@@ -364,4 +372,8 @@ __all__ = [
|
|
|
364
372
|
"EmbeddingSync",
|
|
365
373
|
"ToolFinderEmbedding",
|
|
366
374
|
"AlphaFoldRESTTool",
|
|
375
|
+
"ODPHPMyHealthfinder",
|
|
376
|
+
"ODPHPItemList",
|
|
377
|
+
"ODPHPTopicSearch",
|
|
378
|
+
"ODPHPOutlinkFetch",
|
|
367
379
|
]
|