Skip to content

Commit 228df34

Browse files
amrit110claude
andcommitted
Fix Claude model name format
Use correct model ID with dashes instead of dots: claude-sonnet-4-5-20250929 (not claude-sonnet-4.5-20250929) Fixes: 404 "model not found" error in agent execution 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <[email protected]>
1 parent 9d681fc commit 228df34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aieng_bot/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def get_model_name() -> str:
1212
Returns
1313
-------
1414
str
15-
The full model identifier (e.g., "claude-sonnet-4.5-20250929").
15+
The full model identifier (e.g., "claude-sonnet-4-5-20250929").
1616
1717
"""
18-
return os.getenv("CLAUDE_MODEL", "claude-sonnet-4.5-20250929")
18+
return os.getenv("CLAUDE_MODEL", "claude-sonnet-4-5-20250929")

0 commit comments

Comments
 (0)