From 784188c93e4faf9289620b162065df146c891014 Mon Sep 17 00:00:00 2001 From: ryoppippi <1560508+ryoppippi@users.noreply.github.com> Date: Thu, 18 Dec 2025 19:15:49 +0000 Subject: [PATCH] docs: remove obsolete migration section from README Removes the migration guide for get_tools() to fetch_tools() transition. This section is no longer relevant since get_tools() was completely removed in favour of fetch_tools() (commit d50d5fb). --- README.md | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/README.md b/README.md index a822426..0cebcda 100644 --- a/README.md +++ b/README.md @@ -358,25 +358,6 @@ For more examples, check out the [examples/](examples/) directory: - [CrewAI Integration](examples/crewai_integration.py) - [Meta Tools](examples/meta_tools_example.py) -## Migration from `get_tools()` to `fetch_tools()` - -If you're upgrading from a previous version that used `get_tools()`, here's how to migrate: - -```python -# Before (deprecated) -tools = toolset.get_tools("hris_*", account_id="acc-123") - -# After -tools = toolset.fetch_tools(actions=["hris_*"], account_ids=["acc-123"]) -``` - -Key differences: - -- `fetch_tools()` uses keyword arguments for all filtering -- `account_id` becomes `account_ids` (list) -- Filter patterns go in the `actions` parameter (list) -- `fetch_tools()` requires the MCP extra (`pip install 'stackone-ai[mcp]'`) - ## License Apache 2.0 License