fix: remove hardcoded haiku model from validation recipe quick-approval steps#111
Open
fix: remove hardcoded haiku model from validation recipe quick-approval steps#111
Conversation
…al steps The 'claude-haiku' model identifier in validate-agents.yaml and validate-bundle-repo.yaml is not a valid Anthropic model ID and causes a not_found_error when the quick-approval step runs during validation. Changes: - Removed hardcoded provider/model pinning from quick-approval steps - Recipe now uses session default model instead, improving portability - Quick-approval step is simple enough for any model without optimization - Updated validate-agents.yaml version from 1.2.4 to 1.2.5 - Added changelog entry documenting the fix Fixes validation failures when running validate-agents and validate-bundle-repo recipes with Anthropic provider configured. 🤖 Generated with Amplifier Co-Authored-By: Amplifier <240397093+microsoft-amplifier@users.noreply.github.com>
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.
Summary
Details
The 'claude-haiku' model identifier in
validate-agents.yamlandvalidate-bundle-repo.yamlis not a valid Anthropic model ID. This caused validation failures when running:validate-agentsrecipevalidate-bundle-reporecipeThe quick-approval step performs a simple summary task that doesn't require model optimization, so we removed the hardcoded provider/model constraint and let it use the session default. This makes the recipes portable across different provider configurations.
Changes
recipes/validate-agents.yaml: Removedproviderandmodelfields from quick-approval step, bumped version to 1.2.5recipes/validate-bundle-repo.yaml: Removedproviderandmodelfields from quick-approval stepTest plan
🤖 Generated with Amplifier