Release v0.2.0 - #5
Merged
Merged
Conversation
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014V513wLcoqKEPYtbsCApBU
…bump mthds to 0.7.1 - Drop the mthds resolver entirely: MTHDS_API_KEY / MTHDS_BASE_URL / ~/.mthds/config are never read. Resolution is api_key arg -> PIPELEX_API_KEY -> anonymous, and base_url arg -> PIPELEX_BASE_URL -> https://api.pipelex.com, matching the JS SDK's ?? chains exactly. - Presence semantics on base_url: an explicit empty string (arg or set-but-empty PIPELEX_BASE_URL) now fails fast with PipelineRequestError instead of silently targeting the hosted default. - Add request_timeout_seconds constructor parameter (default 20 min, inherited from the base ClassVar) for the blocking-execute ceiling. - Bump mthds dependency to >=0.7.1 and re-lock. - Update README, CLAUDE.md, docs/architecture.md, CHANGELOG, and unit tests to the new resolution chains. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_014V513wLcoqKEPYtbsCApBU
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.
Release v0.2.0
Added
request_timeout_secondsconstructor parameter onPipelexAPIClient— per-instance blocking-execute ceiling for the inherited protocol routes (execute,start,validate,models,version). Default 20 min.Changed
mthdsbase client and@pipelex/sdk:api_token→api_key,api_base_url→base_url.PIPELEX_API_URL→PIPELEX_BASE_URL(no read alias kept).PipelineRequestErrorinstead of being treated as unset — presence semantics at both the argument and env layers, matching the JS SDK's??chain. A set-but-emptyPIPELEX_BASE_URL(e.g. an unfilled CI secret) fails fast at construction.mthdsresolver (MTHDS_API_KEY/MTHDS_BASE_URL/~/.mthds/config). Borrowing that key while ignoring its URL could send a credential configured for another runner toapi.pipelex.com. Chains match the JS SDK exactly:api_keyarg →PIPELEX_API_KEY→ anonymous;base_urlarg →PIPELEX_BASE_URL→https://api.pipelex.com.mthdsdependency from>=0.6.1to>=0.7.1.README.md,CLAUDE.md,docs/architecture.md) and unit tests accordingly.Fixed
PipelexAPIClient()now targets the hosted API when nothing is configured, instead of leakingmthds's local bare-runner default (http://localhost:8081) through the now-removed resolver fallback.🤖 Generated with Claude Code
https://claude.ai/code/session_014V513wLcoqKEPYtbsCApBU