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.

Files changed (32) hide show
  1. tooluniverse/__init__.py +17 -5
  2. tooluniverse/agentic_tool.py +268 -330
  3. tooluniverse/compose_scripts/output_summarizer.py +21 -15
  4. tooluniverse/data/agentic_tools.json +2 -2
  5. tooluniverse/data/odphp_tools.json +354 -0
  6. tooluniverse/data/output_summarization_tools.json +2 -2
  7. tooluniverse/default_config.py +1 -0
  8. tooluniverse/llm_clients.py +570 -0
  9. tooluniverse/mcp_tool_registry.py +3 -3
  10. tooluniverse/odphp_tool.py +226 -0
  11. tooluniverse/output_hook.py +92 -3
  12. tooluniverse/remote/boltz/boltz_mcp_server.py +2 -2
  13. tooluniverse/remote/uspto_downloader/uspto_downloader_mcp_server.py +2 -2
  14. tooluniverse/smcp.py +204 -112
  15. tooluniverse/smcp_server.py +23 -20
  16. tooluniverse/test/list_azure_openai_models.py +210 -0
  17. tooluniverse/test/test_agentic_tool_azure_models.py +91 -0
  18. tooluniverse/test/test_api_key_validation_min.py +64 -0
  19. tooluniverse/test/test_claude_sdk.py +86 -0
  20. tooluniverse/test/test_global_fallback.py +288 -0
  21. tooluniverse/test/test_hooks_direct.py +219 -0
  22. tooluniverse/test/test_odphp_tool.py +166 -0
  23. tooluniverse/test/test_openrouter_client.py +288 -0
  24. tooluniverse/test/test_stdio_hooks.py +285 -0
  25. tooluniverse/test/test_tool_finder.py +1 -1
  26. {tooluniverse-1.0.3.dist-info → tooluniverse-1.0.5.dist-info}/METADATA +101 -74
  27. {tooluniverse-1.0.3.dist-info → tooluniverse-1.0.5.dist-info}/RECORD +31 -19
  28. tooluniverse-1.0.5.dist-info/licenses/LICENSE +201 -0
  29. tooluniverse-1.0.3.dist-info/licenses/LICENSE +0 -21
  30. {tooluniverse-1.0.3.dist-info → tooluniverse-1.0.5.dist-info}/WHEEL +0 -0
  31. {tooluniverse-1.0.3.dist-info → tooluniverse-1.0.5.dist-info}/entry_points.txt +0 -0
  32. {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
- # from .admetai_tool import ADMETAITool
219
- from .mcp_client_tool import MCPClientTool, MCPAutoLoaderTool
220
- from .admetai_tool import ADMETAITool
221
- from .alphafold_tool import AlphaFoldRESTTool
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
  ]