| 12345678910111213141516171819202122232425 |
- import { Effect } from "effect"
- import { PluginV2 } from "../../plugin"
- export const AnthropicPlugin = PluginV2.define({
- id: PluginV2.ID.make("anthropic"),
- effect: Effect.gen(function* () {
- return {
- "catalog.transform": Effect.fn(function* (evt) {
- for (const item of evt.provider.list()) {
- if (item.provider.endpoint.type !== "aisdk") continue
- if (item.provider.endpoint.package !== "@ai-sdk/anthropic") continue
- evt.provider.update(item.provider.id, (provider) => {
- provider.options.headers["anthropic-beta"] =
- "interleaved-thinking-2025-05-14,fine-grained-tool-streaming-2025-05-14"
- })
- }
- }),
- "aisdk.sdk": Effect.fn(function* (evt) {
- if (evt.package !== "@ai-sdk/anthropic") return
- const mod = yield* Effect.promise(() => import("@ai-sdk/anthropic"))
- evt.sdk = mod.createAnthropic(evt.options)
- }),
- }
- }),
- })
|