1
0
mirror of synced 2026-05-22 14:43:35 +00:00

chore: Update LLM to be Global CRIS Haiku 4.5 (#622)

* update model id to haiku 4.5

* update model references to Haiku 4.5

* second batch of haiku 4.5 update.

* bump LLM to Haiku 4.5

* add alias to contributors

* add min version to starter toolkit so container is valid syntax.

* fix issues identified in code review.
This commit is contained in:
Jared
2025-11-21 22:55:39 -05:00
committed by GitHub
parent dcb94ccbd8
commit e5341f1bf9
148 changed files with 356 additions and 400 deletions
@@ -76,7 +76,7 @@ async def initialize_browser_session():
await browser_session.start()
bedrock_chat = ChatBedrockConverse(
model_id="us.anthropic.claude-3-7-sonnet-20250219-v1:0",
model_id="global.anthropic.claude-haiku-4-5-20251001-v1:0",
region_name="us-west-2"
)
@@ -735,10 +735,9 @@ Resources:
console.print("[cyan]🔄 Initializing browser session...[/cyan]")
await browser_session.start()
# Create ChatBedrockConverse once
bedrock_chat = ChatAnthropicBedrock(
model='us.anthropic.claude-sonnet-4-5-20250929-v1:0',
aws_region=region
bedrock_chat = ChatBedrockConverse(
model_id="global.anthropic.claude-haiku-4-5-20251001-v1:0",
region_name="us-west-2"
)
console.print("[green]✅ Browser session initialized and ready[/green]")