- Bump mthds dependency to >=0.1.1.#754
Merged
Merged
Conversation
- Add `bundle`/`pipe` subcommands to VS Code debug launch configurations - Use `optional_main_stuff` for safe pretty printing when pipe output has no main stuff - Add `optional_main_stuff` property to `PipeOutput` - Update uv.lock with latest dependency versions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Ensures gateway-only models are available in the model deck during pipe validation, preventing ValidationError when pipes reference models like azure-document-intelligence. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
There was a problem hiding this comment.
2 issues found across 7 files (changes from recent commits).
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="pipelex/cli/commands/show_cmd.py">
<violation number="1" location="pipelex/cli/commands/show_cmd.py:233">
P1: Don't load real model specs in `show pipe`; this makes a local inspection command fail on gateway/remote-config setup.
(Based on your team's feedback about keeping read-only CLI commands from depending on inference setup.) [FEEDBACK_USED]</violation>
</file>
<file name="pipelex/cli/commands/which_cmd.py">
<violation number="1" location="pipelex/cli/commands/which_cmd.py:85">
P2: `pipelex which` should stay local-only; `needs_model_specs=True` now makes it depend on gateway terms/remote config.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
thomashebrard
approved these changes
Mar 13, 2026
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
Medium Risk
Medium risk because several CLI commands now force
needs_model_specs=True, which may introduce new network/runtime dependencies and change validation/inputs generation behavior. Thepipelex runoutput printing path is also adjusted to handle missingmain_stuff, which could affect CLI output expectations.Overview
Bumps the package to
v0.20.7and updates themthdsdependency to>=0.1.1(with matching changelog entry).Changes multiple non-inference CLI entry points (including agent
inputscommands andpipelex build inputs/output,show pipe, andwhich) to initialize Pipelex withneeds_model_specs=Trueso they load real gateway model specs without enabling inference.Makes
pipelex runonly pretty-print the final output whenmain_stuffis present by addingPipeOutput.optional_main_stuff, and updates VS Code debug launch args to the newerrun bundle/run pipeforms.Written by Cursor Bugbot for commit b6f5b7a. This will update automatically on new commits. Configure here.