feat: upgrade finance assistant models and fix deploy scripts#56
Merged
lucaslangwagenbinbash merged 5 commits intomasterfrom Mar 30, 2026
Merged
Conversation
Migrate to PEP 735 dependency groups format which uv now expects, removing the deprecation warning on every uv command.
- launch.sh: use `uv run python` instead of system `python3` so pyyaml is available from the project virtualenv - post_agent_deploy.py: use `default_agent` from YAML to select the correct agent ARN instead of blindly taking the first dict entry, which picked a stale 'main' agent over 'finance_personal_assistant'
The agentcore CLI appends new agent entries but never removes old ones. A previous run with a different name (e.g. default 'main') would leave residual entries that confused post-deploy SSM publishing. configure.sh now removes any agent entry that doesn't match the expected agent name.
…t agent - Add NOVA_2_LITE and CLAUDE_SONNET_46 to BedrockModelCatalog with verified inference profile IDs from Bedrock - Orchestrator (main.py): switch from Claude Sonnet 4.5 to Nova 2 Lite for faster routing and reduced Bedrock throttling - Budget agent: switch from Claude Sonnet 4.5 to Claude Sonnet 4.6 for improved reasoning on financial analysis
- Restore finance_personal_assistant entry in agents.yaml (was removed) - Sync pending chat-agent and UI app changes
lucaslangwagenbinbash
approved these changes
Mar 30, 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 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.
What?
.bedrock_agentcore.yamlresidual entries[tool.uv]dev-dependencies format in pyproject.tomlWhy?
ServiceUnavailableException: Too many connectionsthrottling when orchestrator and sub-agents competed for Bedrock connectionspost_agent_deploy.pywas publishing the wrong agent ARN to SSM (stalemainentry instead offinance_personal_assistant) because it usednext(iter())instead of respectingdefault_agentlaunch.shused systempython3(missing pyyaml) instead ofuv run pythonfrom the project virtualenvconfigure.shdidn't clean up residual agent entries from previousagentcore configureruns with different namesReferences
us.amazon.nova-2-lite-v1:0,us.anthropic.claude-sonnet-4-6