Skip to content

Commit b2105fe

Browse files
committed
fix: use named import for Anthropic SDK to match codebase convention
1 parent 6b58811 commit b2105fe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/core/task/__tests__/appendEnvironmentDetails.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Anthropic from "@anthropic-ai/sdk"
1+
import { Anthropic } from "@anthropic-ai/sdk"
22
import {
33
appendEnvironmentDetails,
44
removeEnvironmentDetailsBlocks,

src/core/task/appendEnvironmentDetails.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import Anthropic from "@anthropic-ai/sdk"
1+
import { Anthropic } from "@anthropic-ai/sdk"
22

33
/**
44
* Type for content block params that can appear in messages.

0 commit comments

Comments
 (0)