-
Notifications
You must be signed in to change notification settings - Fork 1.9k
feat: Add Claude Haiku 4.5 model support across all demos #299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
- Add HAIKU_4_5 model configuration to Computer Use Demo - Add provider-specific model strings for Bedrock and Vertex - Update model dropdowns in Customer Support and Financial Data Analyst - Set Claude Haiku 4.5 as default in Customer Support Agent - Document available models in Agents module - Update README with Claude 4.5 Haiku availability Model IDs: - Anthropic API: claude-haiku-4-5-20251001 - AWS Bedrock: anthropic.claude-haiku-4-5-20251001-v1:0 - Google Vertex: claude-haiku-4-5@20251001 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
ericharmeling
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - just a nit about naming convention
computer-use-demo/README.md
Outdated
|
|
||
| - Build files to create a Docker container with all necessary dependencies | ||
| - A computer use agent loop using the Claude API, Bedrock, or Vertex to access Claude 3.5 Sonnet, Claude 3.7 Sonnet, Claude 4 Sonnet, and Claude 4 Opus models | ||
| - A computer use agent loop using the Claude API, Bedrock, or Vertex to access Claude 3.5 Sonnet, Claude 3.7 Sonnet, Claude 4 Sonnet, Claude 4 Opus, and Claude 4.5 Haiku models |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Naming convention is "Claude [model] [version]"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good catch. fixing.
Update model naming to follow proper conventions: - Claude 4+ models: Claude [model] [version] (e.g., Claude Sonnet 4.5) - Pre-4 models: Claude [version] [model] (e.g., Claude 3.5 Sonnet) This ensures consistency with Anthropic's official naming standards. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
…#299) * feat: add Claude Haiku 4.5 model support across all demos - Add HAIKU_4_5 model configuration to Computer Use Demo - Add provider-specific model strings for Bedrock and Vertex - Update model dropdowns in Customer Support and Financial Data Analyst - Set Claude Haiku 4.5 as default in Customer Support Agent - Document available models in Agents module - Update README with Claude 4.5 Haiku availability Model IDs: - Anthropic API: claude-haiku-4-5-20251001 - AWS Bedrock: anthropic.claude-haiku-4-5-20251001-v1:0 - Google Vertex: claude-haiku-4-5@20251001 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> * docs: update Claude model naming conventions in README Update model naming to follow proper conventions: - Claude 4+ models: Claude [model] [version] (e.g., Claude Sonnet 4.5) - Pre-4 models: Claude [version] [model] (e.g., Claude 3.5 Sonnet) This ensures consistency with Anthropic's official naming standards. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]> --------- Co-authored-by: Claude <[email protected]> ## Description <!-- Describe the changes you've made --> ## Quickstart - [ ] Computer Use Demo - [ ] Customer Support Agent - [ ] Financial Data Analyst - [ ] N/A ## Type of Change - [ ] Bug fix - [ ] New feature - [ ] Documentation update - [ ] Code refactoring - [ ] Other (please describe): ## Testing <!-- Describe the testing you've done --> - [ ] Added/updated unit tests - [ ] Tested manually - [ ] Verified in development environment ## Screenshots <!-- If applicable, add screenshots to help explain your changes --> ## Additional Notes <!-- Add any additional context or notes about the changes -->
Summary
This PR adds comprehensive support for the newly released Claude Haiku 4.5 model (
claude-haiku-4-5-20251001) across all demos and applications in the claude-quickstarts repository.Changes
Model Configuration
HAIKU_4_5model configuration in Computer Use Demo with appropriate token limits (8k max, 4k default)claude-haiku-4-5-20251001anthropic.claude-haiku-4-5-20251001-v1:0claude-haiku-4-5@20251001UI Updates
Documentation
Motivation
The new Claude Haiku 4.5 model offers improved performance and capabilities compared to Claude 3 Haiku, while maintaining the same efficient and cost-effective profile. This update ensures users can leverage the latest model across all demo applications.
Breaking Changes
None - this is a backward-compatible addition. Existing model selections remain available.
Special Considerations
Generated with Claude Code