diff --git a/CHANGELOG.md b/CHANGELOG.md index 623e368..a8f0385 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## [2.0.17] + +- Update Anthropic model IDs + ## [2.0.16] - Adjustments to system prompt diff --git a/package.json b/package.json index 6490c11..814fd73 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "claude-dev", "displayName": "Cline (prev. Claude Dev)", "description": "Autonomous coding agent right in your IDE, capable of creating/editing files, executing commands, and more with your permission every step of the way.", - "version": "2.0.16", + "version": "2.0.17", "icon": "assets/icons/icon.png", "galleryBanner": { "color": "#617A91", diff --git a/src/api/providers/anthropic.ts b/src/api/providers/anthropic.ts index 8858e95..62dfeb0 100644 --- a/src/api/providers/anthropic.ts +++ b/src/api/providers/anthropic.ts @@ -26,6 +26,7 @@ export class AnthropicHandler implements ApiHandler { let stream: AnthropicStream const modelId = this.getModel().id switch (modelId) { + // 'latest' alias does not support cache_control case "claude-3-5-sonnet-20241022": case "claude-3-opus-20240229": case "claude-3-haiku-20240307": {