Skip to content

Commit 27cb34c

Browse files
committed
fix: remove hardcoded Haiku model recommendation
- Brittle check that will break with new model versions - Claude already provides intelligent model recommendations - Not all notebooks should use Haiku (some need more capability)
1 parent 0cbf8bd commit 27cb34c

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

scripts/check_models.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,6 @@ def validate_models(notebook_path: Path) -> dict:
6666
'suggestion': RECOMMENDED_MODELS['default']
6767
})
6868

69-
# Add general recommendations
70-
if models and all(m[1] not in ['claude-3-5-haiku-latest', 'claude-3-5-haiku-20241022']
71-
for m in models):
72-
issues['recommendations'].append(
73-
"Consider using 'claude-3-5-haiku-latest' for test examples to minimize costs"
74-
)
75-
7669
return issues
7770

7871

0 commit comments

Comments
 (0)