Feat/cleanup python sdk#28
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
High Risk
Breaking removals and default dependency changes will break imports and fresh installs; the large regenerated API surface also increases the chance of subtle client regressions despite unchanged runtime behavior claims.
Overview
2.4.0 is a breaking release that aligns the Python SDK with the Node client and trims legacy surface area.
Packaging: Provider SDKs (
openai,anthropic,google-genai,mistralai) are no longer default dependencies; install via extras such asmetorial[openai]ormetorial[all]. README documents the install matrix.Client API: The Magnetar client is regenerated and wired through subclass-based endpoint groups (no dynamic
Anydelegation), with new top-level groups onMetorial—integrations,documents,stores,files,skills,callbacks,magic_mcp,portals, plusproviders.triggers. Several non-public endpoints (provider_categories,sessions.events, etc.) are dropped from the public client.Removals: The
adapterspackage, Pulsar generated code,ClientCoreMixin,_config/MetorialConfig,RawResponse, streaming helpers, providerchat_completionsexports, and assorted unused internals are deleted;metorial.providersandconnect()remain the supported paths.Fixes: Anthropic tool args use
json.loadsinstead ofeval. OpenAI Agents and Haystack invoke tools with the original MCP name, not the sanitized display name.Reviewed by Cursor Bugbot for commit 3d7923b. Bugbot is set up for automated code reviews on this repo. Configure here.