experimental-ash 0.38.1 → 0.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/dist/docs/public/tools.md +4 -1
- package/dist/src/compiled/.vendor-stamp.json +6 -6
- package/dist/src/compiled/@ai-sdk/anthropic/index.d.ts +2 -2
- package/dist/src/compiled/@ai-sdk/anthropic/index.js +2 -2
- package/dist/src/compiled/@ai-sdk/anthropic/package.json +1 -1
- package/dist/src/compiled/@ai-sdk/google/index.d.ts +2 -2
- package/dist/src/compiled/@ai-sdk/google/index.js +6 -6
- package/dist/src/compiled/@ai-sdk/google/package.json +1 -1
- package/dist/src/compiled/@ai-sdk/mcp/index.js +1 -1
- package/dist/src/compiled/@ai-sdk/mcp/package.json +1 -1
- package/dist/src/compiled/@ai-sdk/openai/index.d.ts +8 -0
- package/dist/src/compiled/@ai-sdk/openai/index.js +1 -1
- package/dist/src/compiled/@ai-sdk/openai/package.json +1 -1
- package/dist/src/compiled/@ai-sdk/otel/index.js +3 -3
- package/dist/src/compiled/@ai-sdk/otel/package.json +1 -1
- package/dist/src/compiled/@vercel/oidc/index.js +2 -2
- package/dist/src/compiled/@vercel/oidc/package.json +1 -1
- package/dist/src/compiler/compile-from-memory.js +1 -1
- package/dist/src/compiler/manifest.js +1 -1
- package/dist/src/compiler/normalize-agent-config.d.ts +2 -2
- package/dist/src/compiler/normalize-agent-config.js +1 -1
- package/dist/src/compiler/normalize-skill.js +1 -1
- package/dist/src/context/run-step.d.ts +17 -6
- package/dist/src/context/run-step.js +1 -1
- package/dist/src/discover/manifest.js +1 -1
- package/dist/src/execution/sandbox/ensure.js +1 -1
- package/dist/src/execution/workflow-entry.js +1 -1
- package/dist/src/execution/workflow-steps.js +1 -1
- package/dist/src/internal/application/package.js +1 -1
- package/dist/src/internal/authored-definition/core.js +1 -1
- package/dist/src/internal/nitro/routes/agent-info/build-agent-info-response.d.ts +0 -1
- package/dist/src/internal/nitro/routes/agent-info/build-agent-info-response.js +1 -1
- package/dist/src/packages/ash-scaffold/src/channels.js +1 -1
- package/dist/src/public/channels/discord/defaults.js +1 -1
- package/dist/src/public/channels/discord/discordChannel.d.ts +2 -1
- package/dist/src/public/channels/index.d.ts +1 -1
- package/dist/src/public/channels/slack/defaults.js +1 -1
- package/dist/src/public/channels/slack/slackChannel.d.ts +2 -1
- package/dist/src/public/channels/teams/defaults.js +1 -1
- package/dist/src/public/channels/teams/teamsChannel.d.ts +2 -1
- package/dist/src/public/channels/telegram/defaults.js +1 -1
- package/dist/src/public/channels/telegram/telegramChannel.d.ts +2 -1
- package/dist/src/public/channels/twilio/defaults.js +1 -1
- package/dist/src/public/channels/twilio/twilioChannel.d.ts +2 -1
- package/dist/src/public/definitions/connections/mcp.d.ts +2 -2
- package/dist/src/public/definitions/defineChannel.d.ts +4 -3
- package/dist/src/public/definitions/defineChannel.js +1 -1
- package/dist/src/public/definitions/instructions.d.ts +1 -1
- package/dist/src/public/definitions/tool.d.ts +10 -0
- package/dist/src/runtime/agent/bootstrap.d.ts +0 -2
- package/dist/src/runtime/agent/bootstrap.js +1 -1
- package/dist/src/runtime/resolve-agent.js +1 -1
- package/dist/src/runtime/types.d.ts +1 -2
- package/dist/src/shared/agent-definition.d.ts +12 -14
- package/dist/src/shared/sandbox-definition.d.ts +3 -1
- package/dist/src/shared/skill-definition.d.ts +6 -6
- package/dist/src/shared/tool-definition.d.ts +3 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# experimental-ash
|
|
2
2
|
|
|
3
|
+
## 0.40.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a4ef54e: Channel event handlers now receive a guaranteed `SessionContext` on all events except `session.failed`. The `authorization.completed` emission moved inside the `runStep` ALS scope, and the subagent HITL proxy path (`input.requested`, `turn.completed`, `session.waiting`, `session.completed`) now runs inside `withContextScope` with full provider lifecycle (session, connection, sandbox). `session.failed` drops the `ctx` parameter entirely since it fires outside any recoverable session scope.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- ccca562: Fix race condition where fast clients could POST `inputResponses` before the park hook was registered. The park hook is now created before the first turn dispatches, eliminating the window between `session.waiting` emission and hook availability.
|
|
12
|
+
|
|
13
|
+
## 0.39.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 452e483: Rename `ChannelConfig` to `ChannelDefinition` and add `readonly` to all public definition interfaces. The `config` parameter in `defineChannel` is now `definition` for consistency with every other `define*` function. All properties on public definition types (`AgentDefinition`, `ToolDefinition`, `InstructionsDefinition`, `SkillDefinition`, `SandboxDefinition`, `McpClientConnectionDefinition`, etc.) are now `readonly`.
|
|
18
|
+
- 452e483: Remove dead `metadata` field from `AgentDefinition`. The field was plumbed through compiler, discovery, and runtime layers but never consumed. Skill and eval `metadata` are unchanged — skill `metadata` is part of the Agent Skills spec.
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- 5768652: Tighten public authoring types for tool schemas, channel events, and sandbox session setup. Plain JSON Schema tool definitions are now accepted by TypeScript, channel event handlers reflect that session context may be unavailable on terminal fallback paths, and sandbox `onSession` receives typed session context.
|
|
23
|
+
|
|
3
24
|
## 0.38.1
|
|
4
25
|
|
|
5
26
|
### Patch Changes
|
|
@@ -51,7 +51,10 @@ The AI SDK uses `inputSchema` to validate and transform model input (including Z
|
|
|
51
51
|
|
|
52
52
|
## Schemas
|
|
53
53
|
|
|
54
|
-
Ash accepts Standard JSON Schema
|
|
54
|
+
Ash accepts Zod, any Standard Schema, or a plain JSON Schema object. Zod and Standard Schema
|
|
55
|
+
definitions infer the `execute(input, ctx)` input type. Plain JSON Schema is accepted at runtime, but
|
|
56
|
+
TypeScript treats `input` as `Record<string, unknown>` because the schema does not carry a static
|
|
57
|
+
output type.
|
|
55
58
|
|
|
56
59
|
`agent/tools/lookup_customer.ts`
|
|
57
60
|
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"moduleVersions": {
|
|
3
|
-
"@ai-sdk/anthropic": "4.0.0-canary.
|
|
3
|
+
"@ai-sdk/anthropic": "4.0.0-canary.61",
|
|
4
4
|
"chat": "4.29.0",
|
|
5
5
|
"@chat-adapter/slack": "4.29.0",
|
|
6
6
|
"@chat-adapter/state-memory": "4.29.0",
|
|
7
7
|
"chokidar": "5.0.0",
|
|
8
8
|
"commander": "14.0.3",
|
|
9
9
|
"experimental-ai-sdk-code-mode": "1.0.10",
|
|
10
|
-
"@ai-sdk/google": "4.0.0-canary.
|
|
10
|
+
"@ai-sdk/google": "4.0.0-canary.75",
|
|
11
11
|
"gray-matter": "4.0.3",
|
|
12
12
|
"jose": "6.2.3",
|
|
13
13
|
"just-bash": "3.0.1",
|
|
14
14
|
"jsonc-parser": "3.3.1",
|
|
15
|
-
"@ai-sdk/mcp": "2.0.0-canary.
|
|
16
|
-
"@ai-sdk/openai": "4.0.0-canary.
|
|
15
|
+
"@ai-sdk/mcp": "2.0.0-canary.56",
|
|
16
|
+
"@ai-sdk/openai": "4.0.0-canary.66",
|
|
17
17
|
"@opentelemetry/api": "1.9.1",
|
|
18
|
-
"@ai-sdk/otel": "1.0.0-canary.
|
|
18
|
+
"@ai-sdk/otel": "1.0.0-canary.105",
|
|
19
19
|
"picocolors": "1.1.1",
|
|
20
20
|
"@ai-sdk/provider": "4.0.0-canary.17",
|
|
21
21
|
"@standard-schema/spec": "1.1.0",
|
|
22
22
|
"turndown": "7.2.4",
|
|
23
|
-
"@vercel/oidc": "3.
|
|
23
|
+
"@vercel/oidc": "3.5.0",
|
|
24
24
|
"@vercel/sandbox": "2.0.1",
|
|
25
25
|
"@workflow/core": "5.0.0-beta.10",
|
|
26
26
|
"@workflow/errors": "5.0.0-beta.6",
|
|
@@ -168,7 +168,7 @@ interface AnthropicMessageMetadata {
|
|
|
168
168
|
} | null;
|
|
169
169
|
}
|
|
170
170
|
|
|
171
|
-
type AnthropicModelId = 'claude-3-haiku-20240307' | 'claude-haiku-4-5-20251001' | 'claude-haiku-4-5' | 'claude-opus-4-0' | 'claude-opus-4-20250514' | 'claude-opus-4-1-20250805' | 'claude-opus-4-1' | 'claude-opus-4-5' | 'claude-opus-4-5-20251101' | 'claude-sonnet-4-0' | 'claude-sonnet-4-20250514' | 'claude-sonnet-4-5-20250929' | 'claude-sonnet-4-5' | 'claude-sonnet-4-6' | 'claude-opus-4-6' | 'claude-opus-4-7' | (string & {});
|
|
171
|
+
type AnthropicModelId = 'claude-3-haiku-20240307' | 'claude-haiku-4-5-20251001' | 'claude-haiku-4-5' | 'claude-opus-4-0' | 'claude-opus-4-20250514' | 'claude-opus-4-1-20250805' | 'claude-opus-4-1' | 'claude-opus-4-5' | 'claude-opus-4-5-20251101' | 'claude-sonnet-4-0' | 'claude-sonnet-4-20250514' | 'claude-sonnet-4-5-20250929' | 'claude-sonnet-4-5' | 'claude-sonnet-4-6' | 'claude-opus-4-6' | 'claude-opus-4-7' | 'claude-opus-4-8' | (string & {});
|
|
172
172
|
declare const anthropicLanguageModelOptions: z.ZodObject<{
|
|
173
173
|
sendReasoning: z.ZodOptional<z.ZodBoolean>;
|
|
174
174
|
structuredOutputMode: z.ZodOptional<z.ZodEnum<{
|
|
@@ -366,7 +366,7 @@ declare const anthropicTools: {
|
|
|
366
366
|
* Supported executor models: Claude Haiku 4.5, Sonnet 4.6, Opus 4.6,
|
|
367
367
|
* Opus 4.7. The advisor must be at least as capable as the executor.
|
|
368
368
|
*
|
|
369
|
-
* @param model - The advisor model ID (required), e.g. `"claude-opus-4-
|
|
369
|
+
* @param model - The advisor model ID (required), e.g. `"claude-opus-4-8"`.
|
|
370
370
|
* @param maxUses - Maximum advisor calls per request (per-request cap).
|
|
371
371
|
* @param caching - Enables prompt caching for the advisor's transcript
|
|
372
372
|
* across calls within a conversation. Worthwhile from ~3 advisor calls
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import{APICallError as e,InvalidArgumentError as t,NoSuchModelError as n,UnsupportedFunctionalityError as r}from"../provider/index.js";import{At as i,Bt as a,Et as o,Kn as s,Nn as c,Rn as l,Tn as u,Xn as d,Zn as f,dn as p,fn as m,wn as h,yt as g}from"../../_chunks/workflow/schemas-DmgDnhW3.js";import{A as _,B as v,C as y,D as b,I as x,J as S,K as C,L as w,M as T,N as E,R as D,T as O,V as k,W as A,X as ee,Y as j,Z as M,a as N,b as P,d as F,f as I,g as te,h as L,i as R,j as z,k as B,o as V,p as H,q as U,r as W,u as G,x as K,z as q}from"../../_chunks/workflow/dist-Dl-X5RB3.js";var J=F({errorSchema:B(()=>j(u({type:p(`error`),error:u({type:l(),message:l()})}))),errorToMessage:e=>e.error.message}),ne=B(()=>j(u({id:l(),type:p(`file`),filename:l(),mime_type:l(),size_bytes:h(),created_at:l(),downloadable:i().nullish()}))),re=class{constructor(e){this.config=e,this.specificationVersion=`v4`}get provider(){return this.config.provider}async uploadFile({data:e,mediaType:t,filename:n}){let r=N(e),i=new Blob([r],{type:t}),a=new FormData;n==null?a.append(`file`,i):a.append(`file`,i,n);let{value:o}=await w({url:`${this.config.baseURL}/files`,headers:W(this.config.headers(),{"anthropic-beta":`files-api-2025-04-14`}),formData:a,failedResponseHandler:J,successfulResponseHandler:I(ne),fetch:this.config.fetch});return{warnings:[],providerReference:{anthropic:o.id},mediaType:o.mime_type??t,filename:o.filename??n,providerMetadata:{anthropic:{filename:o.filename,mimeType:o.mime_type,sizeBytes:o.size_bytes,createdAt:o.created_at,...o.downloadable==null?{}:{downloadable:o.downloadable}}}}}},ie=B(()=>j(u({type:p(`message`),id:l().nullish(),model:l().nullish(),content:o(a(`type`,[u({type:p(`text`),text:l(),citations:o(a(`type`,[u({type:p(`web_search_result_location`),cited_text:l(),url:l(),title:l(),encrypted_index:l()}),u({type:p(`page_location`),cited_text:l(),document_index:h(),document_title:l().nullable(),start_page_number:h(),end_page_number:h()}),u({type:p(`char_location`),cited_text:l(),document_index:h(),document_title:l().nullable(),start_char_index:h(),end_char_index:h()})])).optional()}),u({type:p(`thinking`),thinking:l(),signature:l()}),u({type:p(`redacted_thinking`),data:l()}),u({type:p(`compaction`),content:l()}),u({type:p(`tool_use`),id:l(),name:l(),input:f(),caller:d([u({type:p(`code_execution_20250825`),tool_id:l()}),u({type:p(`code_execution_20260120`),tool_id:l()}),u({type:p(`direct`)})]).optional()}),u({type:p(`server_tool_use`),id:l(),name:l(),input:c(l(),f()).nullish(),caller:d([u({type:p(`code_execution_20260120`),tool_id:l()}),u({type:p(`direct`)})]).optional()}),u({type:p(`mcp_tool_use`),id:l(),name:l(),input:f(),server_name:l()}),u({type:p(`mcp_tool_result`),tool_use_id:l(),is_error:i(),content:o(d([l(),u({type:p(`text`),text:l()})]))}),u({type:p(`web_fetch_tool_result`),tool_use_id:l(),content:d([u({type:p(`web_fetch_result`),url:l(),retrieved_at:l(),content:u({type:p(`document`),title:l().nullable(),citations:u({enabled:i()}).optional(),source:d([u({type:p(`base64`),media_type:p(`application/pdf`),data:l()}),u({type:p(`text`),media_type:p(`text/plain`),data:l()})])})}),u({type:p(`web_fetch_tool_result_error`),error_code:l()})])}),u({type:p(`web_search_tool_result`),tool_use_id:l(),content:d([o(u({type:p(`web_search_result`),url:l(),title:l(),encrypted_content:l(),page_age:l().nullish()})),u({type:p(`web_search_tool_result_error`),error_code:l()})])}),u({type:p(`code_execution_tool_result`),tool_use_id:l(),content:d([u({type:p(`code_execution_result`),stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`encrypted_code_execution_result`),encrypted_stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`code_execution_tool_result_error`),error_code:l()})])}),u({type:p(`bash_code_execution_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`bash_code_execution_result`),content:o(u({type:p(`bash_code_execution_output`),file_id:l()})),stdout:l(),stderr:l(),return_code:h()}),u({type:p(`bash_code_execution_tool_result_error`),error_code:l()})])}),u({type:p(`text_editor_code_execution_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`text_editor_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_view_result`),content:l(),file_type:l(),num_lines:h().nullable(),start_line:h().nullable(),total_lines:h().nullable()}),u({type:p(`text_editor_code_execution_create_result`),is_file_update:i()}),u({type:p(`text_editor_code_execution_str_replace_result`),lines:o(l()).nullable(),new_lines:h().nullable(),new_start:h().nullable(),old_lines:h().nullable(),old_start:h().nullable()})])}),u({type:p(`tool_search_tool_result`),tool_use_id:l(),content:d([u({type:p(`tool_search_tool_search_result`),tool_references:o(u({type:p(`tool_reference`),tool_name:l()}))}),u({type:p(`tool_search_tool_result_error`),error_code:l()})])}),u({type:p(`advisor_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`advisor_result`),text:l()}),u({type:p(`advisor_redacted_result`),encrypted_content:l()}),u({type:p(`advisor_tool_result_error`),error_code:l()})])})])),stop_reason:l().nullish(),stop_sequence:l().nullish(),usage:m({input_tokens:h(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish(),iterations:o(d([u({type:d([p(`compaction`),p(`message`)]),input_tokens:h(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish()}),u({type:p(`advisor_message`),model:l(),input_tokens:h(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish()})])).nullish()}),container:u({expires_at:l(),id:l(),skills:o(u({type:d([p(`anthropic`),p(`custom`)]),skill_id:l(),version:l()})).nullish()}).nullish(),context_management:u({applied_edits:o(d([u({type:p(`clear_tool_uses_20250919`),cleared_tool_uses:h(),cleared_input_tokens:h()}),u({type:p(`clear_thinking_20251015`),cleared_thinking_turns:h(),cleared_input_tokens:h()}),u({type:p(`compact_20260112`)})]))}).nullish()}))),ae=B(()=>j(a(`type`,[u({type:p(`message_start`),message:u({id:l().nullish(),model:l().nullish(),role:l().nullish(),usage:m({input_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish()}),content:o(a(`type`,[u({type:p(`tool_use`),id:l(),name:l(),input:f(),caller:d([u({type:p(`code_execution_20250825`),tool_id:l()}),u({type:p(`code_execution_20260120`),tool_id:l()}),u({type:p(`direct`)})]).optional()})])).nullish(),stop_reason:l().nullish(),container:u({expires_at:l(),id:l()}).nullish()})}),u({type:p(`content_block_start`),index:h(),content_block:a(`type`,[u({type:p(`text`),text:l()}),u({type:p(`thinking`),thinking:l()}),u({type:p(`tool_use`),id:l(),name:l(),input:c(l(),f()).optional(),caller:d([u({type:p(`code_execution_20250825`),tool_id:l()}),u({type:p(`code_execution_20260120`),tool_id:l()}),u({type:p(`direct`)})]).optional()}),u({type:p(`redacted_thinking`),data:l()}),u({type:p(`compaction`),content:l().nullish()}),u({type:p(`server_tool_use`),id:l(),name:l(),input:c(l(),f()).nullish(),caller:d([u({type:p(`code_execution_20260120`),tool_id:l()}),u({type:p(`direct`)})]).optional()}),u({type:p(`mcp_tool_use`),id:l(),name:l(),input:f(),server_name:l()}),u({type:p(`mcp_tool_result`),tool_use_id:l(),is_error:i(),content:o(d([l(),u({type:p(`text`),text:l()})]))}),u({type:p(`web_fetch_tool_result`),tool_use_id:l(),content:d([u({type:p(`web_fetch_result`),url:l(),retrieved_at:l(),content:u({type:p(`document`),title:l().nullable(),citations:u({enabled:i()}).optional(),source:d([u({type:p(`base64`),media_type:p(`application/pdf`),data:l()}),u({type:p(`text`),media_type:p(`text/plain`),data:l()})])})}),u({type:p(`web_fetch_tool_result_error`),error_code:l()})])}),u({type:p(`web_search_tool_result`),tool_use_id:l(),content:d([o(u({type:p(`web_search_result`),url:l(),title:l(),encrypted_content:l(),page_age:l().nullish()})),u({type:p(`web_search_tool_result_error`),error_code:l()})])}),u({type:p(`code_execution_tool_result`),tool_use_id:l(),content:d([u({type:p(`code_execution_result`),stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`encrypted_code_execution_result`),encrypted_stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`code_execution_tool_result_error`),error_code:l()})])}),u({type:p(`bash_code_execution_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`bash_code_execution_result`),content:o(u({type:p(`bash_code_execution_output`),file_id:l()})),stdout:l(),stderr:l(),return_code:h()}),u({type:p(`bash_code_execution_tool_result_error`),error_code:l()})])}),u({type:p(`text_editor_code_execution_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`text_editor_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_view_result`),content:l(),file_type:l(),num_lines:h().nullable(),start_line:h().nullable(),total_lines:h().nullable()}),u({type:p(`text_editor_code_execution_create_result`),is_file_update:i()}),u({type:p(`text_editor_code_execution_str_replace_result`),lines:o(l()).nullable(),new_lines:h().nullable(),new_start:h().nullable(),old_lines:h().nullable(),old_start:h().nullable()})])}),u({type:p(`tool_search_tool_result`),tool_use_id:l(),content:d([u({type:p(`tool_search_tool_search_result`),tool_references:o(u({type:p(`tool_reference`),tool_name:l()}))}),u({type:p(`tool_search_tool_result_error`),error_code:l()})])}),u({type:p(`advisor_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`advisor_result`),text:l()}),u({type:p(`advisor_redacted_result`),encrypted_content:l()}),u({type:p(`advisor_tool_result_error`),error_code:l()})])})])}),u({type:p(`content_block_delta`),index:h(),delta:a(`type`,[u({type:p(`input_json_delta`),partial_json:l()}),u({type:p(`text_delta`),text:l()}),u({type:p(`thinking_delta`),thinking:l()}),u({type:p(`signature_delta`),signature:l()}),u({type:p(`compaction_delta`),content:l().nullish()}),u({type:p(`citations_delta`),citation:a(`type`,[u({type:p(`web_search_result_location`),cited_text:l(),url:l(),title:l(),encrypted_index:l()}),u({type:p(`page_location`),cited_text:l(),document_index:h(),document_title:l().nullable(),start_page_number:h(),end_page_number:h()}),u({type:p(`char_location`),cited_text:l(),document_index:h(),document_title:l().nullable(),start_char_index:h(),end_char_index:h()})])})])}),u({type:p(`content_block_stop`),index:h()}),u({type:p(`error`),error:u({type:l(),message:l()})}),u({type:p(`message_delta`),delta:u({stop_reason:l().nullish(),stop_sequence:l().nullish(),container:u({expires_at:l(),id:l(),skills:o(u({type:d([p(`anthropic`),p(`custom`)]),skill_id:l(),version:l()})).nullish()}).nullish()}),usage:m({input_tokens:h().nullish(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish(),iterations:o(d([u({type:d([p(`compaction`),p(`message`)]),input_tokens:h(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish()}),u({type:p(`advisor_message`),model:l(),input_tokens:h(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish()})])).nullish()}),context_management:u({applied_edits:o(d([u({type:p(`clear_tool_uses_20250919`),cleared_tool_uses:h(),cleared_input_tokens:h()}),u({type:p(`clear_thinking_20251015`),cleared_thinking_turns:h(),cleared_input_tokens:h()}),u({type:p(`compact_20260112`)})]))}).nullish()}),u({type:p(`message_stop`)}),u({type:p(`ping`)})]))),oe=B(()=>j(u({signature:l().optional(),redactedData:l().optional()}))),Y=u({citations:u({enabled:i()}).optional(),title:l().optional(),context:l().optional()}),se=u({sendReasoning:i().optional(),structuredOutputMode:g([`outputFormat`,`jsonTool`,`auto`]).optional(),thinking:a(`type`,[u({type:p(`adaptive`),display:g([`omitted`,`summarized`]).optional()}),u({type:p(`enabled`),budgetTokens:h().optional()}),u({type:p(`disabled`)})]).optional(),disableParallelToolUse:i().optional(),cacheControl:u({type:p(`ephemeral`),ttl:d([p(`5m`),p(`1h`)]).optional()}).optional(),metadata:u({userId:l().optional()}).optional(),mcpServers:o(u({type:p(`url`),name:l(),url:l(),authorizationToken:l().nullish(),toolConfiguration:u({enabled:i().nullish(),allowedTools:o(l()).nullish()}).nullish()})).optional(),container:u({id:l().optional(),skills:o(a(`type`,[u({type:p(`anthropic`),skillId:l(),version:l().optional()}),u({type:p(`custom`),providerReference:c(l(),l()),version:l().optional()})])).optional()}).optional(),toolStreaming:i().optional(),effort:g([`low`,`medium`,`high`,`xhigh`,`max`]).optional(),taskBudget:u({type:p(`tokens`),total:h().int().min(2e4),remaining:h().int().min(0).optional()}).optional(),speed:g([`fast`,`standard`]).optional(),inferenceGeo:g([`us`,`global`]).optional(),anthropicBeta:o(l()).optional(),contextManagement:u({edits:o(a(`type`,[u({type:p(`clear_tool_uses_20250919`),trigger:a(`type`,[u({type:p(`input_tokens`),value:h()}),u({type:p(`tool_uses`),value:h()})]).optional(),keep:u({type:p(`tool_uses`),value:h()}).optional(),clearAtLeast:u({type:p(`input_tokens`),value:h()}).optional(),clearToolInputs:i().optional(),excludeTools:o(l()).optional()}),u({type:p(`clear_thinking_20251015`),keep:d([p(`all`),u({type:p(`thinking_turns`),value:h()})]).optional()}),u({type:p(`compact_20260112`),trigger:u({type:p(`input_tokens`),value:h()}).optional(),pauseAfterCompaction:i().optional(),instructions:l().optional()})]))}).optional()}),ce=4;function le(e){let t=e?.anthropic;return t?.cacheControl??t?.cache_control}var X=class{constructor(){this.breakpointCount=0,this.warnings=[]}getCacheControl(e,t){let n=le(e);if(n){if(!t.canCache){this.warnings.push({type:`unsupported`,feature:`cache_control on non-cacheable context`,details:`cache_control cannot be set on ${t.type}. It will be ignored.`});return}if(this.breakpointCount++,this.breakpointCount>ce){this.warnings.push({type:`unsupported`,feature:`cacheControl breakpoint limit`,details:`Maximum ${ce} cache breakpoints exceeded (found ${this.breakpointCount}). This breakpoint will be ignored.`});return}return n}}getWarnings(){return this.warnings}},ue=B(()=>j(u({model:l(),maxUses:h().optional(),caching:u({type:p(`ephemeral`),ttl:d([p(`5m`),p(`1h`)])}).optional()}))),de=B(()=>j(a(`type`,[u({type:p(`advisor_result`),text:l()}),u({type:p(`advisor_redacted_result`),encryptedContent:l()}),u({type:p(`advisor_tool_result_error`),errorCode:l()})]))),fe=L({id:`anthropic.advisor_20260301`,inputSchema:B(()=>j(u({}).strict())),outputSchema:de,supportsDeferredResults:!0}),pe=e=>fe(e),me=B(()=>j(u({maxCharacters:h().optional()}))),he=H({id:`anthropic.text_editor_20250728`,inputSchema:B(()=>j(u({command:g([`view`,`create`,`str_replace`,`insert`]),path:l(),file_text:l().optional(),insert_line:h().int().optional(),new_str:l().optional(),insert_text:l().optional(),old_str:l().optional(),view_range:o(h().int()).optional()})))}),ge=(e={})=>he(e),_e=B(()=>j(u({maxUses:h().optional(),allowedDomains:o(l()).optional(),blockedDomains:o(l()).optional(),userLocation:u({type:p(`approximate`),city:l().optional(),region:l().optional(),country:l().optional(),timezone:l().optional()}).optional()}))),ve=B(()=>j(o(u({url:l(),title:l().nullable(),pageAge:l().nullable(),encryptedContent:l(),type:p(`web_search_result`)})))),ye=L({id:`anthropic.web_search_20260209`,inputSchema:B(()=>j(u({query:l()}))),outputSchema:ve,supportsDeferredResults:!0}),be=(e={})=>ye(e),xe=B(()=>j(u({maxUses:h().optional(),allowedDomains:o(l()).optional(),blockedDomains:o(l()).optional(),userLocation:u({type:p(`approximate`),city:l().optional(),region:l().optional(),country:l().optional(),timezone:l().optional()}).optional()}))),Se=B(()=>j(o(u({url:l(),title:l().nullable(),pageAge:l().nullable(),encryptedContent:l(),type:p(`web_search_result`)})))),Ce=L({id:`anthropic.web_search_20250305`,inputSchema:B(()=>j(u({query:l()}))),outputSchema:Se,supportsDeferredResults:!0}),we=(e={})=>Ce(e),Te=B(()=>j(u({maxUses:h().optional(),allowedDomains:o(l()).optional(),blockedDomains:o(l()).optional(),citations:u({enabled:i()}).optional(),maxContentTokens:h().optional()}))),Ee=B(()=>j(u({type:p(`web_fetch_result`),url:l(),content:u({type:p(`document`),title:l().nullable(),citations:u({enabled:i()}).optional(),source:d([u({type:p(`base64`),mediaType:p(`application/pdf`),data:l()}),u({type:p(`text`),mediaType:p(`text/plain`),data:l()})])}),retrievedAt:l().nullable()}))),De=L({id:`anthropic.web_fetch_20260209`,inputSchema:B(()=>j(u({url:l()}))),outputSchema:Ee,supportsDeferredResults:!0}),Oe=(e={})=>De(e),ke=B(()=>j(u({maxUses:h().optional(),allowedDomains:o(l()).optional(),blockedDomains:o(l()).optional(),citations:u({enabled:i()}).optional(),maxContentTokens:h().optional()}))),Ae=B(()=>j(u({type:p(`web_fetch_result`),url:l(),content:u({type:p(`document`),title:l().nullable(),citations:u({enabled:i()}).optional(),source:d([u({type:p(`base64`),mediaType:p(`application/pdf`),data:l()}),u({type:p(`text`),mediaType:p(`text/plain`),data:l()})])}),retrievedAt:l().nullable()}))),je=L({id:`anthropic.web_fetch_20250910`,inputSchema:B(()=>j(u({url:l()}))),outputSchema:Ae,supportsDeferredResults:!0}),Me=(e={})=>je(e);async function Ne({tools:e,toolChoice:t,disableParallelToolUse:n,cacheControlValidator:i,supportsStructuredOutput:a,supportsStrictTools:o,defaultEagerInputStreaming:s=!1}){e=e?.length?e:void 0;let c=[],l=new Set,u=i||new X;if(e==null)return{tools:void 0,toolChoice:void 0,toolWarnings:c,betas:l};let d=[];for(let t of e)switch(t.type){case`function`:{let e=u.getCacheControl(t.providerOptions,{type:`tool definition`,canCache:!0}),n=t.providerOptions?.anthropic,r=n?.eagerInputStreaming??s,i=n?.deferLoading,f=n?.allowedCallers;!o&&t.strict!=null&&c.push({type:`unsupported`,feature:`strict`,details:`Tool '${t.name}' has strict: ${t.strict}, but strict mode is not supported by this provider. The strict property will be ignored.`}),d.push({name:t.name,description:t.description,input_schema:t.inputSchema,cache_control:e,...r?{eager_input_streaming:!0}:{},...o===!0&&t.strict!=null?{strict:t.strict}:{},...i==null?{}:{defer_loading:i},...f==null?{}:{allowed_callers:f},...t.inputExamples==null?{}:{input_examples:t.inputExamples.map(e=>e.input)}}),a===!0&&l.add(`structured-outputs-2025-11-13`),(t.inputExamples!=null||f!=null)&&l.add(`advanced-tool-use-2025-11-20`);break}case`provider`:switch(t.id){case`anthropic.code_execution_20250522`:l.add(`code-execution-2025-05-22`),d.push({type:`code_execution_20250522`,name:`code_execution`,cache_control:void 0});break;case`anthropic.code_execution_20250825`:l.add(`code-execution-2025-08-25`),d.push({type:`code_execution_20250825`,name:`code_execution`});break;case`anthropic.code_execution_20260120`:d.push({type:`code_execution_20260120`,name:`code_execution`});break;case`anthropic.computer_20250124`:l.add(`computer-use-2025-01-24`),d.push({name:`computer`,type:`computer_20250124`,display_width_px:t.args.displayWidthPx,display_height_px:t.args.displayHeightPx,display_number:t.args.displayNumber,cache_control:void 0});break;case`anthropic.computer_20251124`:l.add(`computer-use-2025-11-24`),d.push({name:`computer`,type:`computer_20251124`,display_width_px:t.args.displayWidthPx,display_height_px:t.args.displayHeightPx,display_number:t.args.displayNumber,enable_zoom:t.args.enableZoom,cache_control:void 0});break;case`anthropic.computer_20241022`:l.add(`computer-use-2024-10-22`),d.push({name:`computer`,type:`computer_20241022`,display_width_px:t.args.displayWidthPx,display_height_px:t.args.displayHeightPx,display_number:t.args.displayNumber,cache_control:void 0});break;case`anthropic.text_editor_20250124`:l.add(`computer-use-2025-01-24`),d.push({name:`str_replace_editor`,type:`text_editor_20250124`,cache_control:void 0});break;case`anthropic.text_editor_20241022`:l.add(`computer-use-2024-10-22`),d.push({name:`str_replace_editor`,type:`text_editor_20241022`,cache_control:void 0});break;case`anthropic.text_editor_20250429`:l.add(`computer-use-2025-01-24`),d.push({name:`str_replace_based_edit_tool`,type:`text_editor_20250429`,cache_control:void 0});break;case`anthropic.text_editor_20250728`:{let e=await C({value:t.args,schema:me});d.push({name:`str_replace_based_edit_tool`,type:`text_editor_20250728`,max_characters:e.maxCharacters,cache_control:void 0});break}case`anthropic.bash_20250124`:l.add(`computer-use-2025-01-24`),d.push({name:`bash`,type:`bash_20250124`,cache_control:void 0});break;case`anthropic.bash_20241022`:l.add(`computer-use-2024-10-22`),d.push({name:`bash`,type:`bash_20241022`,cache_control:void 0});break;case`anthropic.memory_20250818`:l.add(`context-management-2025-06-27`),d.push({name:`memory`,type:`memory_20250818`});break;case`anthropic.web_fetch_20250910`:{l.add(`web-fetch-2025-09-10`);let e=await C({value:t.args,schema:ke});d.push({type:`web_fetch_20250910`,name:`web_fetch`,max_uses:e.maxUses,allowed_domains:e.allowedDomains,blocked_domains:e.blockedDomains,citations:e.citations,max_content_tokens:e.maxContentTokens,cache_control:void 0});break}case`anthropic.web_fetch_20260209`:{l.add(`code-execution-web-tools-2026-02-09`);let e=await C({value:t.args,schema:Te});d.push({type:`web_fetch_20260209`,name:`web_fetch`,max_uses:e.maxUses,allowed_domains:e.allowedDomains,blocked_domains:e.blockedDomains,citations:e.citations,max_content_tokens:e.maxContentTokens,cache_control:void 0});break}case`anthropic.web_search_20250305`:{let e=await C({value:t.args,schema:xe});d.push({type:`web_search_20250305`,name:`web_search`,max_uses:e.maxUses,allowed_domains:e.allowedDomains,blocked_domains:e.blockedDomains,user_location:e.userLocation,cache_control:void 0});break}case`anthropic.web_search_20260209`:{l.add(`code-execution-web-tools-2026-02-09`);let e=await C({value:t.args,schema:_e});d.push({type:`web_search_20260209`,name:`web_search`,max_uses:e.maxUses,allowed_domains:e.allowedDomains,blocked_domains:e.blockedDomains,user_location:e.userLocation,cache_control:void 0});break}case`anthropic.tool_search_regex_20251119`:d.push({type:`tool_search_tool_regex_20251119`,name:`tool_search_tool_regex`});break;case`anthropic.tool_search_bm25_20251119`:d.push({type:`tool_search_tool_bm25_20251119`,name:`tool_search_tool_bm25`});break;case`anthropic.advisor_20260301`:{l.add(`advisor-tool-2026-03-01`);let e=await C({value:t.args,schema:ue});d.push({type:`advisor_20260301`,name:`advisor`,model:e.model,...e.maxUses!==void 0&&{max_uses:e.maxUses},...e.caching!==void 0&&{caching:e.caching}});break}default:c.push({type:`unsupported`,feature:`provider-defined tool ${t.id}`});break}break;default:c.push({type:`unsupported`,feature:`tool ${t}`});break}if(t==null)return{tools:d,toolChoice:n?{type:`auto`,disable_parallel_tool_use:n}:void 0,toolWarnings:c,betas:l};let f=t.type;switch(f){case`auto`:return{tools:d,toolChoice:{type:`auto`,disable_parallel_tool_use:n},toolWarnings:c,betas:l};case`required`:return{tools:d,toolChoice:{type:`any`,disable_parallel_tool_use:n},toolWarnings:c,betas:l};case`none`:return{tools:void 0,toolChoice:void 0,toolWarnings:c,betas:l};case`tool`:return{tools:d,toolChoice:{type:`tool`,name:t.toolName,disable_parallel_tool_use:n},toolWarnings:c,betas:l};default:throw new r({functionality:`tool choice type: ${f}`})}}function Pe({usage:e,rawUsage:t}){let n=e.cache_creation_input_tokens??0,r=e.cache_read_input_tokens??0,i,a;if(e.iterations&&e.iterations.length>0){let t=e.iterations.filter(e=>e.type===`compaction`||e.type===`message`);if(t.length>0){let e=t.reduce((e,t)=>({input:e.input+t.input_tokens,output:e.output+t.output_tokens}),{input:0,output:0});i=e.input,a=e.output}else i=e.input_tokens,a=e.output_tokens}else i=e.input_tokens,a=e.output_tokens;return{inputTokens:{total:i+n+r,noCache:i,cacheRead:r,cacheWrite:n},outputTokens:{total:a,text:void 0,reasoning:void 0},raw:t??e}}var Fe=B(()=>j(u({type:p(`code_execution_result`),stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}))),Ie=L({id:`anthropic.code_execution_20250522`,inputSchema:B(()=>j(u({code:l()}))),outputSchema:Fe}),Le=(e={})=>Ie(e),Re=B(()=>j(a(`type`,[u({type:p(`code_execution_result`),stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`bash_code_execution_result`),content:o(u({type:p(`bash_code_execution_output`),file_id:l()})),stdout:l(),stderr:l(),return_code:h()}),u({type:p(`bash_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_view_result`),content:l(),file_type:l(),num_lines:h().nullable(),start_line:h().nullable(),total_lines:h().nullable()}),u({type:p(`text_editor_code_execution_create_result`),is_file_update:i()}),u({type:p(`text_editor_code_execution_str_replace_result`),lines:o(l()).nullable(),new_lines:h().nullable(),new_start:h().nullable(),old_lines:h().nullable(),old_start:h().nullable()})]))),ze=L({id:`anthropic.code_execution_20250825`,inputSchema:B(()=>j(a(`type`,[u({type:p(`programmatic-tool-call`),code:l()}),u({type:p(`bash_code_execution`),command:l()}),a(`command`,[u({type:p(`text_editor_code_execution`),command:p(`view`),path:l()}),u({type:p(`text_editor_code_execution`),command:p(`create`),path:l(),file_text:l().nullish()}),u({type:p(`text_editor_code_execution`),command:p(`str_replace`),path:l(),old_str:l(),new_str:l()})])]))),outputSchema:Re,supportsDeferredResults:!0}),Be=(e={})=>ze(e),Ve=B(()=>j(a(`type`,[u({type:p(`code_execution_result`),stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`encrypted_code_execution_result`),encrypted_stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`bash_code_execution_result`),content:o(u({type:p(`bash_code_execution_output`),file_id:l()})),stdout:l(),stderr:l(),return_code:h()}),u({type:p(`bash_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_view_result`),content:l(),file_type:l(),num_lines:h().nullable(),start_line:h().nullable(),total_lines:h().nullable()}),u({type:p(`text_editor_code_execution_create_result`),is_file_update:i()}),u({type:p(`text_editor_code_execution_str_replace_result`),lines:o(l()).nullable(),new_lines:h().nullable(),new_start:h().nullable(),old_lines:h().nullable(),old_start:h().nullable()})]))),He=L({id:`anthropic.code_execution_20260120`,inputSchema:B(()=>j(a(`type`,[u({type:p(`programmatic-tool-call`),code:l()}),u({type:p(`bash_code_execution`),command:l()}),a(`command`,[u({type:p(`text_editor_code_execution`),command:p(`view`),path:l()}),u({type:p(`text_editor_code_execution`),command:p(`create`),path:l(),file_text:l().nullish()}),u({type:p(`text_editor_code_execution`),command:p(`str_replace`),path:l(),old_str:l(),new_str:l()})])]))),outputSchema:Ve,supportsDeferredResults:!0}),Ue=(e={})=>He(e),We=B(()=>j(o(u({type:p(`tool_reference`),toolName:l()})))),Ge=L({id:`anthropic.tool_search_regex_20251119`,inputSchema:B(()=>j(u({pattern:l(),limit:h().optional()}))),outputSchema:We,supportsDeferredResults:!0}),Ke=(e={})=>Ge(e);function qe(e){return typeof e==`string`?new TextDecoder().decode(R(e)):new TextDecoder().decode(e)}function Je(e){try{if(typeof e==`string`)return JSON.parse(e);if(typeof e==`object`&&e)return e}catch{let t=e?.errorCode;return{errorCode:typeof t==`string`?t:`unavailable`}}return{}}async function Ye({prompt:e,sendReasoning:t,warnings:n,cacheControlValidator:i,toolNameMapping:a}){let o=new Set,s=Xe(e),c=i||new X,l,u=[];async function d(e){return(await x({provider:`anthropic`,providerOptions:e,schema:Y}))?.citations?.enabled??!1}async function f(e){let t=await x({provider:`anthropic`,providerOptions:e,schema:Y});return{title:t?.title,context:t?.context}}for(let e=0;e<s.length;e++){let i=s[e],p=e===s.length-1,m=i.type;switch(m){case`system`:if(l!=null)throw new r({functionality:`Multiple system messages that are separated by user/assistant messages`});l=i.messages.map(({content:e,providerOptions:t})=>({type:`text`,text:e,cache_control:c.getCacheControl(t,{type:`system message`,canCache:!0})}));break;case`user`:{let e=[];for(let t of i.messages){let{role:i,content:a}=t;switch(i){case`user`:for(let n=0;n<a.length;n++){let i=a[n],s=n===a.length-1,l=c.getCacheControl(i.providerOptions,{type:`user message part`,canCache:!0})??(s?c.getCacheControl(t.providerOptions,{type:`user message`,canCache:!0}):void 0);switch(i.type){case`text`:e.push({type:`text`,text:i.text,cache_control:l});break;case`file`:switch(i.data.type){case`reference`:{let t=k({reference:i.data.reference,provider:`anthropic`});o.add(`files-api-2025-04-14`),y(i.mediaType)===`image`?e.push({type:`image`,source:{type:`file`,file_id:t},cache_control:l}):e.push({type:`document`,source:{type:`file`,file_id:t},cache_control:l});break}case`text`:{let t=await d(i.providerOptions),n=await f(i.providerOptions);e.push({type:`document`,source:{type:`text`,media_type:`text/plain`,data:i.data.text},title:n.title??i.filename,...n.context&&{context:n.context},...t&&{citations:{enabled:!0}},cache_control:l});break}case`url`:case`data`:{let t=y(i.mediaType);if(t===`image`)e.push({type:`image`,source:i.data.type===`url`?{type:`url`,url:i.data.url.toString()}:{type:`base64`,media_type:v({part:i}),data:V(i.data.data)},cache_control:l});else if(t===`application`&&(i.data.type===`url`?i.mediaType===`application/pdf`:v({part:i})===`application/pdf`)){o.add(`pdfs-2024-09-25`);let t=await d(i.providerOptions),n=await f(i.providerOptions);e.push({type:`document`,source:i.data.type===`url`?{type:`url`,url:i.data.url.toString()}:{type:`base64`,media_type:`application/pdf`,data:V(i.data.data)},title:n.title??i.filename,...n.context&&{context:n.context},...t&&{citations:{enabled:!0}},cache_control:l})}else if(i.mediaType===`text/plain`){let t=await d(i.providerOptions),n=await f(i.providerOptions);e.push({type:`document`,source:i.data.type===`url`?{type:`url`,url:i.data.url.toString()}:{type:`text`,media_type:`text/plain`,data:qe(i.data.data)},title:n.title??i.filename,...n.context&&{context:n.context},...t&&{citations:{enabled:!0}},cache_control:l})}else throw new r({functionality:`media type: ${i.mediaType}`});break}}break}}break;case`tool`:for(let r=0;r<a.length;r++){let i=a[r];if(i.type===`tool-approval-response`)continue;let s=i.output,l=`providerOptions`in s?s.providerOptions:s.type===`content`?s.value.find(e=>e.providerOptions!=null)?.providerOptions:void 0,u=r===a.length-1,d=c.getCacheControl(i.providerOptions,{type:`tool result part`,canCache:!0})??c.getCacheControl(l,{type:`tool result output`,canCache:!0})??(u?c.getCacheControl(t.providerOptions,{type:`tool result message`,canCache:!0}):void 0),f;switch(s.type){case`content`:f=s.value.map(e=>{switch(e.type){case`text`:return{type:`text`,text:e.text};case`file`:{let t=y(e.mediaType);if(e.data.type===`url`)return t===`image`?{type:`image`,source:{type:`url`,url:e.data.url.toString()}}:{type:`document`,source:{type:`url`,url:e.data.url.toString()}};if(e.data.type===`data`){if(t===`image`)return{type:`image`,source:{type:`base64`,media_type:v({part:e}),data:V(e.data.data)}};if(v({part:e})===`application/pdf`)return o.add(`pdfs-2024-09-25`),{type:`document`,source:{type:`base64`,media_type:`application/pdf`,data:V(e.data.data)}};n.push({type:`other`,message:`unsupported tool content part type: ${e.type} with media type: ${e.mediaType}`});return}n.push({type:`other`,message:`unsupported tool content part type: ${e.type} with data type: ${e.data.type}`});return}case`custom`:{let t=e.providerOptions?.anthropic;if(t?.type===`tool-reference`)return{type:`tool_reference`,tool_name:t.toolName};n.push({type:`other`,message:`unsupported custom tool content part`});return}default:n.push({type:`other`,message:`unsupported tool content part type: ${e.type}`});return}}).filter(b);break;case`text`:case`error-text`:f=s.value;break;case`execution-denied`:f=s.reason??`Tool call execution denied.`;break;default:f=JSON.stringify(s.value);break}e.push({type:`tool_result`,tool_use_id:i.toolCallId,content:f,is_error:s.type===`error-text`||s.type===`error-json`?!0:void 0,cache_control:d})}break;default:throw Error(`Unsupported role: ${i}`)}}u.push({role:`user`,content:e});break}case`assistant`:{let e=[],r=new Set;for(let o=0;o<i.messages.length;o++){let s=i.messages[o],l=o===i.messages.length-1,{content:u}=s;for(let i=0;i<u.length;i++){let o=u[i],d=i===u.length-1,f=c.getCacheControl(o.providerOptions,{type:`assistant message part`,canCache:!0})??(d?c.getCacheControl(s.providerOptions,{type:`assistant message`,canCache:!0}):void 0);switch(o.type){case`text`:o.providerOptions?.anthropic?.type===`compaction`?e.push({type:`compaction`,content:o.text,cache_control:f}):e.push({type:`text`,text:p&&l&&d?o.text.trim():o.text,cache_control:f});break;case`reasoning`:if(t){let t=await x({provider:`anthropic`,providerOptions:o.providerOptions,schema:oe});t==null?n.push({type:`other`,message:`unsupported reasoning metadata`}):t.signature==null?t.redactedData==null?n.push({type:`other`,message:`unsupported reasoning metadata`}):(c.getCacheControl(o.providerOptions,{type:`redacted thinking block`,canCache:!1}),e.push({type:`redacted_thinking`,data:t.redactedData})):(c.getCacheControl(o.providerOptions,{type:`thinking block`,canCache:!1}),e.push({type:`thinking`,thinking:o.text,signature:t.signature}))}else n.push({type:`other`,message:`sending reasoning content is disabled for this model`});break;case`tool-call`:{if(o.providerExecuted){let t=a.toProviderToolName(o.toolName);if(o.providerOptions?.anthropic?.type===`mcp-tool-use`){r.add(o.toolCallId);let t=o.providerOptions?.anthropic?.serverName;if(t==null||typeof t!=`string`){n.push({type:`other`,message:`mcp tool use server name is required and must be a string`});break}e.push({type:`mcp_tool_use`,id:o.toolCallId,name:o.toolName,input:o.input,server_name:t,cache_control:f})}else if(t===`code_execution`&&o.input!=null&&typeof o.input==`object`&&`type`in o.input&&typeof o.input.type==`string`&&(o.input.type===`bash_code_execution`||o.input.type===`text_editor_code_execution`))e.push({type:`server_tool_use`,id:o.toolCallId,name:o.input.type,input:o.input,cache_control:f});else if(t===`code_execution`&&o.input!=null&&typeof o.input==`object`&&`type`in o.input&&o.input.type===`programmatic-tool-call`){let{type:t,...n}=o.input;e.push({type:`server_tool_use`,id:o.toolCallId,name:`code_execution`,input:n,cache_control:f})}else t===`code_execution`||t===`web_fetch`||t===`web_search`||t===`tool_search_tool_regex`||t===`tool_search_tool_bm25`?e.push({type:`server_tool_use`,id:o.toolCallId,name:t,input:o.input,cache_control:f}):t===`advisor`?e.push({type:`server_tool_use`,id:o.toolCallId,name:`advisor`,input:{},cache_control:f}):n.push({type:`other`,message:`provider executed tool call for tool ${o.toolName} is not supported`});break}let t=o.providerOptions?.anthropic,i=t?.caller?(t.caller.type===`code_execution_20250825`||t.caller.type===`code_execution_20260120`)&&t.caller.toolId?{type:t.caller.type,tool_id:t.caller.toolId}:t.caller.type===`direct`?{type:`direct`}:void 0:void 0;e.push({type:`tool_use`,id:o.toolCallId,name:o.toolName,input:o.input,...i&&{caller:i},cache_control:f});break}case`tool-result`:{let t=a.toProviderToolName(o.toolName);if(r.has(o.toolCallId)){let t=o.output;if(t.type!==`json`&&t.type!==`error-json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}e.push({type:`mcp_tool_result`,tool_use_id:o.toolCallId,is_error:t.type===`error-json`,content:t.value,cache_control:f})}else if(t===`code_execution`){let t=o.output;if(t.type===`error-text`||t.type===`error-json`){let n={};try{typeof t.value==`string`?n=JSON.parse(t.value):typeof t.value==`object`&&t.value!==null&&(n=t.value)}catch{}n.type===`code_execution_tool_result_error`?e.push({type:`code_execution_tool_result`,tool_use_id:o.toolCallId,content:{type:`code_execution_tool_result_error`,error_code:n.errorCode??`unknown`},cache_control:f}):e.push({type:`bash_code_execution_tool_result`,tool_use_id:o.toolCallId,cache_control:f,content:{type:`bash_code_execution_tool_result_error`,error_code:n.errorCode??`unknown`}});break}if(t.type!==`json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}if(t.value==null||typeof t.value!=`object`||!(`type`in t.value)||typeof t.value.type!=`string`){n.push({type:`other`,message:`provider executed tool result output value is not a valid code execution result for tool ${o.toolName}`});break}if(t.value.type===`code_execution_result`){let n=await C({value:t.value,schema:Fe});e.push({type:`code_execution_tool_result`,tool_use_id:o.toolCallId,content:{type:n.type,stdout:n.stdout,stderr:n.stderr,return_code:n.return_code,content:n.content??[]},cache_control:f})}else if(t.value.type===`encrypted_code_execution_result`){let n=await C({value:t.value,schema:Ve});n.type===`encrypted_code_execution_result`&&e.push({type:`code_execution_tool_result`,tool_use_id:o.toolCallId,content:{type:n.type,encrypted_stdout:n.encrypted_stdout,stderr:n.stderr,return_code:n.return_code,content:n.content??[]},cache_control:f})}else{let n=await C({value:t.value,schema:Re});n.type===`code_execution_result`?e.push({type:`code_execution_tool_result`,tool_use_id:o.toolCallId,content:{type:n.type,stdout:n.stdout,stderr:n.stderr,return_code:n.return_code,content:n.content??[]},cache_control:f}):n.type===`bash_code_execution_result`||n.type===`bash_code_execution_tool_result_error`?e.push({type:`bash_code_execution_tool_result`,tool_use_id:o.toolCallId,cache_control:f,content:n}):e.push({type:`text_editor_code_execution_tool_result`,tool_use_id:o.toolCallId,cache_control:f,content:n})}break}if(t===`web_fetch`){let t=o.output;if(t.type===`error-json`){e.push({type:`web_fetch_tool_result`,tool_use_id:o.toolCallId,content:{type:`web_fetch_tool_result_error`,error_code:Je(t.value).errorCode??`unavailable`},cache_control:f});break}if(t.type!==`json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}let r=await C({value:t.value,schema:Ae});e.push({type:`web_fetch_tool_result`,tool_use_id:o.toolCallId,content:{type:`web_fetch_result`,url:r.url,retrieved_at:r.retrievedAt,content:{type:`document`,title:r.content.title,citations:r.content.citations,source:{type:r.content.source.type,media_type:r.content.source.mediaType,data:r.content.source.data}}},cache_control:f});break}if(t===`web_search`){let t=o.output;if(t.type===`error-json`){e.push({type:`web_search_tool_result`,tool_use_id:o.toolCallId,content:{type:`web_search_tool_result_error`,error_code:Je(t.value).errorCode??`unavailable`},cache_control:f});break}if(t.type!==`json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}let r=await C({value:t.value,schema:Se});e.push({type:`web_search_tool_result`,tool_use_id:o.toolCallId,content:r.map(e=>({url:e.url,title:e.title,page_age:e.pageAge,encrypted_content:e.encryptedContent,type:e.type})),cache_control:f});break}if(t===`tool_search_tool_regex`||t===`tool_search_tool_bm25`){let t=o.output;if(t.type!==`json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}let r=(await C({value:t.value,schema:We})).map(e=>({type:`tool_reference`,tool_name:e.toolName}));e.push({type:`tool_search_tool_result`,tool_use_id:o.toolCallId,content:{type:`tool_search_tool_search_result`,tool_references:r},cache_control:f});break}if(t===`advisor`){let t=o.output;if(t.type!==`json`&&t.type!==`error-json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}let r=await C({value:t.value,schema:de});r.type===`advisor_result`?e.push({type:`advisor_tool_result`,tool_use_id:o.toolCallId,content:{type:`advisor_result`,text:r.text},cache_control:f}):r.type===`advisor_redacted_result`?e.push({type:`advisor_tool_result`,tool_use_id:o.toolCallId,content:{type:`advisor_redacted_result`,encrypted_content:r.encryptedContent},cache_control:f}):e.push({type:`advisor_tool_result`,tool_use_id:o.toolCallId,content:{type:`advisor_tool_result_error`,error_code:r.errorCode},cache_control:f});break}n.push({type:`other`,message:`provider executed tool result for tool ${o.toolName} is not supported`});break}}}}u.push({role:`assistant`,content:e});break}default:throw Error(`content type: ${m}`)}}return{prompt:{system:l,messages:u},betas:o}}function Xe(e){let t=[],n;for(let r of e){let{role:e}=r;switch(e){case`system`:n?.type!==`system`&&(n={type:`system`,messages:[]},t.push(n)),n.messages.push(r);break;case`assistant`:n?.type!==`assistant`&&(n={type:`assistant`,messages:[]},t.push(n)),n.messages.push(r);break;case`user`:n?.type!==`user`&&(n={type:`user`,messages:[]},t.push(n)),n.messages.push(r);break;case`tool`:n?.type!==`user`&&(n={type:`user`,messages:[]},t.push(n)),n.messages.push(r);break;default:throw Error(`Unsupported role: ${e}`)}}return t}function Z({finishReason:e,isJsonResponseFromTool:t}){switch(e){case`pause_turn`:case`end_turn`:case`stop_sequence`:return`stop`;case`refusal`:return`content-filter`;case`tool_use`:return t?`stop`:`tool-calls`;case`max_tokens`:case`model_context_window_exceeded`:return`length`;case`compaction`:return`other`;default:return`other`}}var Ze=new Set([`date-time`,`time`,`date`,`duration`,`email`,`hostname`,`uri`,`ipv4`,`ipv6`,`uuid`]),Qe=[`minimum`,`maximum`,`exclusiveMinimum`,`exclusiveMaximum`,`multipleOf`,`minLength`,`maxLength`,`pattern`,`minItems`,`maxItems`,`uniqueItems`,`minProperties`,`maxProperties`,`not`];function $e(e){return et(e)}function Q(e){return typeof e==`boolean`||!it(e)?e:et(e)}function et(e){let t={},n=e;if(e.$ref!=null)return{$ref:e.$ref};if(e.$schema!=null&&(t.$schema=e.$schema),e.$id!=null&&(t.$id=e.$id),e.title!=null&&(t.title=e.title),e.description!=null&&(t.description=e.description),e.default!==void 0&&(t.default=e.default),e.const!==void 0&&(t.const=e.const),e.enum!=null&&(t.enum=e.enum),e.type!=null&&(t.type=e.type),e.anyOf==null?e.oneOf!=null&&(t.anyOf=e.oneOf.map(Q)):t.anyOf=e.anyOf.map(Q),e.allOf!=null&&(t.allOf=e.allOf.map(Q)),e.definitions!=null&&(t.definitions=Object.fromEntries(Object.entries(e.definitions).map(([e,t])=>[e,Q(t)]))),n.$defs!=null){let e=t;e.$defs=Object.fromEntries(Object.entries(n.$defs).map(([e,t])=>[e,Q(t)]))}(e.type===`object`||e.properties!=null)&&(e.properties!=null&&(t.properties=Object.fromEntries(Object.entries(e.properties).map(([e,t])=>[e,Q(t)]))),t.additionalProperties=!1,e.required!=null&&(t.required=e.required)),e.items!=null&&(t.items=Array.isArray(e.items)?e.items.map(Q):Q(e.items)),typeof e.format==`string`&&Ze.has(e.format)&&(t.format=e.format);let r=tt(e);return r!=null&&(t.description=t.description==null?r:`${t.description}
|
|
2
|
-
${r}`),t}function tt(e){let t=Qe.flatMap(t=>{let n=e[t];return n==null||n===!1?[]:`${nt(t)}: ${rt(n)}`});return typeof e.format==`string`&&!Ze.has(e.format)&&t.push(`format: ${e.format}`),t.length===0?void 0:`${t.join(`; `)}.`}function nt(e){return e.replace(/[A-Z]/g,e=>` ${e.toLowerCase()}`)}function rt(e){return typeof e==`string`?e:JSON.stringify(e)}function it(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function at(e,t,n){if(e.type===`web_search_result_location`)return{type:`source`,sourceType:`url`,id:n(),url:e.url,title:e.title,providerMetadata:{anthropic:{citedText:e.cited_text,encryptedIndex:e.encrypted_index}}};if(e.type!==`page_location`&&e.type!==`char_location`)return;let r=t[e.document_index];if(r)return{type:`source`,sourceType:`document`,id:n(),mediaType:r.mediaType,title:e.document_title??r.title,filename:r.filename,providerMetadata:{anthropic:e.type===`page_location`?{citedText:e.cited_text,startPageNumber:e.start_page_number,endPageNumber:e.end_page_number}:{citedText:e.cited_text,startCharIndex:e.start_char_index,endCharIndex:e.end_char_index}}}}var ot=class t{constructor(e,t){this.specificationVersion=`v4`,this.modelId=e,this.config=t,this.generateId=t.generateId??P}static[M](e){return A({modelId:e.modelId,config:e.config})}static[ee](e){return new t(e.modelId,e.config)}supportsUrl(e){return e.protocol===`https:`}get provider(){return this.config.provider}get providerOptionsName(){let e=this.config.provider,t=e.indexOf(`.`);return t===-1?e:e.substring(0,t)}get supportedUrls(){var e;return(e=this.config).supportedUrls?.call(e)??{}}async getArgs({userSuppliedBetas:e,prompt:t,maxOutputTokens:n,temperature:r,topP:i,topK:a,frequencyPenalty:o,presencePenalty:s,stopSequences:c,responseFormat:l,seed:u,tools:d,toolChoice:f,reasoning:p,providerOptions:m,stream:h}){let g=[];o!=null&&g.push({type:`unsupported`,feature:`frequencyPenalty`}),s!=null&&g.push({type:`unsupported`,feature:`presencePenalty`}),u!=null&&g.push({type:`unsupported`,feature:`seed`}),r!=null&&r>1?(g.push({type:`unsupported`,feature:`temperature`,details:`${r} exceeds anthropic maximum of 1.0. clamped to 1.0`}),r=1):r!=null&&r<0&&(g.push({type:`unsupported`,feature:`temperature`,details:`${r} is below anthropic minimum of 0. clamped to 0`}),r=0),l?.type===`json`&&(l.schema??g.push({type:`unsupported`,feature:`responseFormat`,details:`JSON response format requires a schema. The response format is ignored.`}));let _=this.providerOptionsName,v=await x({provider:`anthropic`,providerOptions:m,schema:se}),y=_===`anthropic`?null:await x({provider:_,providerOptions:m,schema:se}),b=y!=null,S=Object.assign({},v??{},y??{}),{maxOutputTokens:C,supportsStructuredOutput:w,supportsAdaptiveThinking:T,rejectsSamplingParameters:E,supportsXhighEffort:D,isKnownModel:A}=st(this.modelId);E&&(r!=null&&(g.push({type:`unsupported`,feature:`temperature`,details:`temperature is not supported by ${this.modelId} and will be ignored`}),r=void 0),a!=null&&(g.push({type:`unsupported`,feature:`topK`,details:`topK is not supported by ${this.modelId} and will be ignored`}),a=void 0),i!=null&&(g.push({type:`unsupported`,feature:`topP`,details:`topP is not supported by ${this.modelId} and will be ignored`}),i=void 0));let ee=A||this.modelId.startsWith(`claude-`),j=(this.config.supportsNativeStructuredOutput??!0)&&w,M=(this.config.supportsStrictTools??!0)&&w,N=S?.structuredOutputMode??`auto`,P=N===`outputFormat`||N===`auto`&&j,F=l?.type===`json`&&l.schema!=null&&!P?{type:`function`,name:`json`,description:`Respond with a JSON object.`,inputSchema:l.schema}:void 0,I=S?.contextManagement,L=new X,R=te({tools:d,providerToolNames:{"anthropic.code_execution_20250522":`code_execution`,"anthropic.code_execution_20250825":`code_execution`,"anthropic.code_execution_20260120":`code_execution`,"anthropic.computer_20241022":`computer`,"anthropic.computer_20250124":`computer`,"anthropic.text_editor_20241022":`str_replace_editor`,"anthropic.text_editor_20250124":`str_replace_editor`,"anthropic.text_editor_20250429":`str_replace_based_edit_tool`,"anthropic.text_editor_20250728":`str_replace_based_edit_tool`,"anthropic.bash_20241022":`bash`,"anthropic.bash_20250124":`bash`,"anthropic.memory_20250818":`memory`,"anthropic.web_search_20250305":`web_search`,"anthropic.web_search_20260209":`web_search`,"anthropic.web_fetch_20250910":`web_fetch`,"anthropic.web_fetch_20260209":`web_fetch`,"anthropic.tool_search_regex_20251119":`tool_search_tool_regex`,"anthropic.tool_search_bm25_20251119":`tool_search_tool_bm25`,"anthropic.advisor_20260301":`advisor`}}),{prompt:z,betas:B}=await Ye({prompt:t,sendReasoning:S?.sendReasoning??!0,warnings:g,cacheControlValidator:L,toolNameMapping:R});if(O(p)&&S?.effort==null){let e=ct({reasoning:p,supportsAdaptiveThinking:T,supportsXhighEffort:D,maxOutputTokensForModel:C,warnings:g});e!=null&&(S.thinking??=e.thinking,e.effort!=null&&S.thinking?.type!==`disabled`&&(S.effort=e.effort))}let V=S?.thinking?.type,H=V===`enabled`||V===`adaptive`,U=V===`enabled`?S?.thinking?.budgetTokens:void 0,W=V===`adaptive`?S?.thinking?.display:void 0,G=n??C,K={model:this.modelId,max_tokens:G,temperature:r,top_k:a,top_p:i,stop_sequences:c,...H&&{thinking:{type:V,...U!=null&&{budget_tokens:U},...W!=null&&{display:W}}},...(S?.effort||S?.taskBudget||P&&l?.type===`json`&&l.schema!=null)&&{output_config:{...S?.effort&&{effort:S.effort},...S?.taskBudget&&{task_budget:{type:S.taskBudget.type,total:S.taskBudget.total,...S.taskBudget.remaining!=null&&{remaining:S.taskBudget.remaining}}},...P&&l?.type===`json`&&l.schema!=null&&{format:{type:`json_schema`,schema:$e(l.schema)}}}},...S?.speed&&{speed:S.speed},...S?.inferenceGeo&&{inference_geo:S.inferenceGeo},...S?.cacheControl&&{cache_control:S.cacheControl},...S?.metadata?.userId!=null&&{metadata:{user_id:S.metadata.userId}},...S?.mcpServers&&S.mcpServers.length>0&&{mcp_servers:S.mcpServers.map(e=>({type:e.type,name:e.name,url:e.url,authorization_token:e.authorizationToken,tool_configuration:e.toolConfiguration?{allowed_tools:e.toolConfiguration.allowedTools,enabled:e.toolConfiguration.enabled}:void 0}))},...S?.container&&{container:S.container.skills&&S.container.skills.length>0?{id:S.container.id,skills:S.container.skills.map(e=>({type:e.type,skill_id:e.type===`custom`?k({reference:e.providerReference,provider:`anthropic`}):e.skillId,version:e.version}))}:S.container.id},system:z.system,messages:z.messages,...I&&{context_management:{edits:I.edits.map(e=>{let t=e.type;switch(t){case`clear_tool_uses_20250919`:return{type:e.type,...e.trigger!==void 0&&{trigger:e.trigger},...e.keep!==void 0&&{keep:e.keep},...e.clearAtLeast!==void 0&&{clear_at_least:e.clearAtLeast},...e.clearToolInputs!==void 0&&{clear_tool_inputs:e.clearToolInputs},...e.excludeTools!==void 0&&{exclude_tools:e.excludeTools}};case`clear_thinking_20251015`:return{type:e.type,...e.keep!==void 0&&{keep:e.keep}};case`compact_20260112`:return{type:e.type,...e.trigger!==void 0&&{trigger:e.trigger},...e.pauseAfterCompaction!==void 0&&{pause_after_compaction:e.pauseAfterCompaction},...e.instructions!==void 0&&{instructions:e.instructions}};default:g.push({type:`other`,message:`Unknown context management strategy: ${t}`});return}}).filter(e=>e!==void 0)}}};H?(V===`enabled`&&U==null&&(g.push({type:`compatibility`,feature:`extended thinking`,details:`thinking budget is required when thinking is enabled. using default budget of 1024 tokens.`}),K.thinking={type:`enabled`,budget_tokens:1024},U=1024),K.temperature!=null&&(K.temperature=void 0,g.push({type:`unsupported`,feature:`temperature`,details:`temperature is not supported when thinking is enabled`})),a!=null&&(K.top_k=void 0,g.push({type:`unsupported`,feature:`topK`,details:`topK is not supported when thinking is enabled`})),i!=null&&(K.top_p=void 0,g.push({type:`unsupported`,feature:`topP`,details:`topP is not supported when thinking is enabled`})),K.max_tokens=G+(U??0)):ee&&i!=null&&r!=null&&(g.push({type:`unsupported`,feature:`topP`,details:`topP is not supported when temperature is set. topP is ignored.`}),K.top_p=void 0),A&&K.max_tokens>C&&(n!=null&&g.push({type:`unsupported`,feature:`maxOutputTokens`,details:`${K.max_tokens} (maxOutputTokens + thinkingBudget) is greater than ${this.modelId} ${C} max output tokens. The max output tokens have been limited to ${C}.`}),K.max_tokens=C),S?.mcpServers&&S.mcpServers.length>0&&B.add(`mcp-client-2025-04-04`),I&&(B.add(`context-management-2025-06-27`),I.edits.some(e=>e.type===`compact_20260112`)&&B.add(`compact-2026-01-12`)),S?.container&&S.container.skills&&S.container.skills.length>0&&(B.add(`code-execution-2025-08-25`),B.add(`skills-2025-10-02`),B.add(`files-api-2025-04-14`),d?.some(e=>e.type===`provider`&&(e.id===`anthropic.code_execution_20250825`||e.id===`anthropic.code_execution_20260120`))||g.push({type:`other`,message:`code execution tool is required when using skills`})),S?.taskBudget&&B.add(`task-budgets-2026-03-13`),S?.speed===`fast`&&B.add(`fast-mode-2026-02-01`);let q=h&&(S?.toolStreaming??!0),{tools:J,toolChoice:ne,toolWarnings:re,betas:ie}=await Ne(F==null?{tools:d??[],toolChoice:f,disableParallelToolUse:S?.disableParallelToolUse,cacheControlValidator:L,supportsStructuredOutput:j,supportsStrictTools:M,defaultEagerInputStreaming:q}:{tools:[...d??[],F],toolChoice:{type:`required`},disableParallelToolUse:!0,cacheControlValidator:L,supportsStructuredOutput:!1,supportsStrictTools:M,defaultEagerInputStreaming:q}),ae=L.getWarnings();return{args:{...K,tools:J,tool_choice:ne,stream:h===!0?!0:void 0},warnings:[...g,...re,...ae],betas:new Set([...B,...ie,...e,...S?.anthropicBeta??[]]),usesJsonResponseTool:F!=null,toolNameMapping:R,providerOptionsName:_,usedCustomProviderKey:b}}async getHeaders({betas:e,headers:t}){return W(this.config.headers?await q(this.config.headers):void 0,t,e.size>0?{"anthropic-beta":Array.from(e).join(`,`)}:{})}async getBetasFromHeaders(e){let t=(this.config.headers?await q(this.config.headers):void 0)?.[`anthropic-beta`]??``,n=e?.[`anthropic-beta`]??``;return new Set([...t.toLowerCase().split(`,`),...n.toLowerCase().split(`,`)].map(e=>e.trim()).filter(e=>e!==``))}buildRequestUrl(e){var t;return(t=this.config).buildRequestUrl?.call(t,this.config.baseURL,e)??`${this.config.baseURL}/messages`}transformRequestBody(e,t){var n;return(n=this.config).transformRequestBody?.call(n,e,t)??e}extractCitationDocuments(e){return e.filter(e=>e.role===`user`).flatMap(e=>e.content).filter(e=>e.type!==`file`||e.mediaType!==`application/pdf`&&e.mediaType!==`text/plain`?!1:e.providerOptions?.anthropic?.citations?.enabled??!1).map(e=>{let t=e;return{title:t.filename??`Untitled Document`,filename:t.filename,mediaType:t.mediaType}})}async doGenerate(e){let{args:t,warnings:n,betas:r,usesJsonResponseTool:i,toolNameMapping:a,providerOptionsName:o,usedCustomProviderKey:s}=await this.getArgs({...e,stream:!1,userSuppliedBetas:await this.getBetasFromHeaders(e.headers)}),c=[...this.extractCitationDocuments(e.prompt)],l=$(t.tools),{responseHeaders:u,value:d,rawValue:f}=await D({url:this.buildRequestUrl(!1),headers:await this.getHeaders({betas:r,headers:e.headers}),body:this.transformRequestBody(t,r),failedResponseHandler:J,successfulResponseHandler:I(ie),abortSignal:e.abortSignal,fetch:this.config.fetch}),p=[],m={},h={},g=!1;for(let e of d.content)switch(e.type){case`text`:if(!i&&(p.push({type:`text`,text:e.text}),e.citations))for(let t of e.citations){let e=at(t,c,this.generateId);e&&p.push(e)}break;case`thinking`:p.push({type:`reasoning`,text:e.thinking,providerMetadata:{anthropic:{signature:e.signature}}});break;case`redacted_thinking`:p.push({type:`reasoning`,text:``,providerMetadata:{anthropic:{redactedData:e.data}}});break;case`compaction`:p.push({type:`text`,text:e.content,providerMetadata:{anthropic:{type:`compaction`}}});break;case`tool_use`:if(i&&e.name===`json`)g=!0,p.push({type:`text`,text:JSON.stringify(e.input)});else{let t=e.caller,n=t?{type:t.type,toolId:`tool_id`in t?t.tool_id:void 0}:void 0;p.push({type:`tool-call`,toolCallId:e.id,toolName:e.name,input:JSON.stringify(e.input),...n&&{providerMetadata:{anthropic:{caller:n}}}})}break;case`server_tool_use`:if(e.name===`text_editor_code_execution`||e.name===`bash_code_execution`)p.push({type:`tool-call`,toolCallId:e.id,toolName:a.toCustomToolName(`code_execution`),input:JSON.stringify({type:e.name,...e.input}),providerExecuted:!0,...l?{dynamic:!0}:{}});else if(e.name===`web_search`||e.name===`code_execution`||e.name===`web_fetch`){let t=e.name===`code_execution`&&e.input!=null&&typeof e.input==`object`&&`code`in e.input&&!(`type`in e.input)?{type:`programmatic-tool-call`,...e.input}:e.input;p.push({type:`tool-call`,toolCallId:e.id,toolName:a.toCustomToolName(e.name),input:JSON.stringify(t),providerExecuted:!0,...l&&e.name===`code_execution`?{dynamic:!0}:{}})}else e.name===`tool_search_tool_regex`||e.name===`tool_search_tool_bm25`?(h[e.id]=e.name,p.push({type:`tool-call`,toolCallId:e.id,toolName:a.toCustomToolName(e.name),input:JSON.stringify(e.input),providerExecuted:!0})):e.name===`advisor`&&p.push({type:`tool-call`,toolCallId:e.id,toolName:a.toCustomToolName(`advisor`),input:JSON.stringify(e.input),providerExecuted:!0});break;case`mcp_tool_use`:m[e.id]={type:`tool-call`,toolCallId:e.id,toolName:e.name,input:JSON.stringify(e.input),providerExecuted:!0,dynamic:!0,providerMetadata:{anthropic:{type:`mcp-tool-use`,serverName:e.server_name}}},p.push(m[e.id]);break;case`mcp_tool_result`:p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:m[e.tool_use_id].toolName,isError:e.is_error,result:e.content,dynamic:!0,providerMetadata:m[e.tool_use_id].providerMetadata});break;case`web_fetch_tool_result`:e.content.type===`web_fetch_result`?(c.push({title:e.content.content.title??e.content.url,mediaType:e.content.content.source.media_type}),p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`web_fetch`),result:{type:`web_fetch_result`,url:e.content.url,retrievedAt:e.content.retrieved_at,content:{type:e.content.content.type,title:e.content.content.title,citations:e.content.content.citations,source:{type:e.content.content.source.type,mediaType:e.content.content.source.media_type,data:e.content.content.source.data}}}})):e.content.type===`web_fetch_tool_result_error`&&p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`web_fetch`),isError:!0,result:{type:`web_fetch_tool_result_error`,errorCode:e.content.error_code}});break;case`web_search_tool_result`:if(Array.isArray(e.content)){p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`web_search`),result:e.content.map(e=>({url:e.url,title:e.title,pageAge:e.page_age??null,encryptedContent:e.encrypted_content,type:e.type}))});for(let t of e.content)p.push({type:`source`,sourceType:`url`,id:this.generateId(),url:t.url,title:t.title,providerMetadata:{anthropic:{pageAge:t.page_age??null}}})}else p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`web_search`),isError:!0,result:{type:`web_search_tool_result_error`,errorCode:e.content.error_code}});break;case`code_execution_tool_result`:e.content.type===`code_execution_result`?p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`code_execution`),result:{type:e.content.type,stdout:e.content.stdout,stderr:e.content.stderr,return_code:e.content.return_code,content:e.content.content??[]}}):e.content.type===`encrypted_code_execution_result`?p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`code_execution`),result:{type:e.content.type,encrypted_stdout:e.content.encrypted_stdout,stderr:e.content.stderr,return_code:e.content.return_code,content:e.content.content??[]}}):e.content.type===`code_execution_tool_result_error`&&p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`code_execution`),isError:!0,result:{type:`code_execution_tool_result_error`,errorCode:e.content.error_code}});break;case`bash_code_execution_tool_result`:case`text_editor_code_execution_tool_result`:p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`code_execution`),result:e.content});break;case`tool_search_tool_result`:{let t=h[e.tool_use_id];if(t==null){let e=a.toCustomToolName(`tool_search_tool_bm25`);a.toCustomToolName(`tool_search_tool_regex`),t=e===`tool_search_tool_bm25`?`tool_search_tool_regex`:`tool_search_tool_bm25`}e.content.type===`tool_search_tool_search_result`?p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(t),result:e.content.tool_references.map(e=>({type:e.type,toolName:e.tool_name}))}):p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(t),isError:!0,result:{type:`tool_search_tool_result_error`,errorCode:e.content.error_code}});break}case`advisor_tool_result`:{let t=a.toCustomToolName(`advisor`);e.content.type===`advisor_result`?p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,result:{type:`advisor_result`,text:e.content.text}}):e.content.type===`advisor_redacted_result`?p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,result:{type:`advisor_redacted_result`,encryptedContent:e.content.encrypted_content}}):p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,isError:!0,result:{type:`advisor_tool_result_error`,errorCode:e.content.error_code}});break}}return{content:p,finishReason:{unified:Z({finishReason:d.stop_reason,isJsonResponseFromTool:g}),raw:d.stop_reason??void 0},usage:Pe({usage:d.usage}),request:{body:t},response:{id:d.id??void 0,modelId:d.model??void 0,headers:u,body:f},warnings:n,providerMetadata:(()=>{let e={usage:d.usage,stopSequence:d.stop_sequence??null,iterations:d.usage.iterations?d.usage.iterations.map(e=>e.type===`advisor_message`?{type:e.type,model:e.model,inputTokens:e.input_tokens,outputTokens:e.output_tokens,...e.cache_creation_input_tokens?{cacheCreationInputTokens:e.cache_creation_input_tokens}:{},...e.cache_read_input_tokens?{cacheReadInputTokens:e.cache_read_input_tokens}:{}}:{type:e.type,inputTokens:e.input_tokens,outputTokens:e.output_tokens,...e.cache_creation_input_tokens?{cacheCreationInputTokens:e.cache_creation_input_tokens}:{},...e.cache_read_input_tokens?{cacheReadInputTokens:e.cache_read_input_tokens}:{}}):null,container:d.container?{expiresAt:d.container.expires_at,id:d.container.id,skills:d.container.skills?.map(e=>({type:e.type,skillId:e.skill_id,version:e.version}))??null}:null,contextManagement:lt(d.context_management)??null},t={anthropic:e};return s&&o!==`anthropic`&&(t[o]=e),t})()}}async doStream(t){"use step";let{args:n,warnings:r,betas:i,usesJsonResponseTool:a,toolNameMapping:o,providerOptionsName:s,usedCustomProviderKey:c}=await this.getArgs({...t,stream:!0,userSuppliedBetas:await this.getBetasFromHeaders(t.headers)}),l=[...this.extractCitationDocuments(t.prompt)],u=$(n.tools),d=this.buildRequestUrl(!0),{responseHeaders:f,value:p}=await D({url:d,headers:await this.getHeaders({betas:i,headers:t.headers}),body:this.transformRequestBody(n,i),failedResponseHandler:J,successfulResponseHandler:G(ae),abortSignal:t.abortSignal,fetch:this.config.fetch}),m={unified:`other`,raw:void 0},h={input_tokens:0,output_tokens:0,cache_creation_input_tokens:0,cache_read_input_tokens:0,iterations:null},g={},_={},v={},y=null,b,x=null,S=null,C=!1,w,T=this.generateId,[E,O]=p.pipeThrough(new TransformStream({start(e){e.enqueue({type:`stream-start`,warnings:r})},transform(e,n){if(t.includeRawChunks&&n.enqueue({type:`raw`,rawValue:e.rawValue}),!e.success){n.enqueue({type:`error`,error:e.error});return}let r=e.value;switch(r.type){case`ping`:return;case`content_block_start`:{let e=r.content_block,t=e.type;switch(w=t,t){case`text`:if(a)return;g[r.index]={type:`text`},n.enqueue({type:`text-start`,id:String(r.index)});return;case`thinking`:g[r.index]={type:`reasoning`},n.enqueue({type:`reasoning-start`,id:String(r.index)});return;case`redacted_thinking`:g[r.index]={type:`reasoning`},n.enqueue({type:`reasoning-start`,id:String(r.index),providerMetadata:{anthropic:{redactedData:e.data}}});return;case`compaction`:g[r.index]={type:`text`},n.enqueue({type:`text-start`,id:String(r.index),providerMetadata:{anthropic:{type:`compaction`}}});return;case`tool_use`:if(a&&e.name===`json`)C=!0,g[r.index]={type:`text`},n.enqueue({type:`text-start`,id:String(r.index)});else{let t=e.caller,i=t?{type:t.type,toolId:`tool_id`in t?t.tool_id:void 0}:void 0,a=e.input&&Object.keys(e.input).length>0?JSON.stringify(e.input):``;g[r.index]={type:`tool-call`,toolCallId:e.id,toolName:e.name,input:a,firstDelta:a.length===0,...i&&{caller:i}},n.enqueue({type:`tool-input-start`,id:e.id,toolName:e.name})}return;case`server_tool_use`:if([`web_fetch`,`web_search`,`code_execution`,`text_editor_code_execution`,`bash_code_execution`].includes(e.name)){let t=e.name===`text_editor_code_execution`||e.name===`bash_code_execution`?`code_execution`:e.name,i=o.toCustomToolName(t),a=e.input!=null&&typeof e.input==`object`&&Object.keys(e.input).length>0?JSON.stringify(e.input):``;g[r.index]={type:`tool-call`,toolCallId:e.id,toolName:i,input:a,providerExecuted:!0,...u&&t===`code_execution`?{dynamic:!0}:{},firstDelta:!0,providerToolName:t},n.enqueue({type:`tool-input-start`,id:e.id,toolName:i,providerExecuted:!0,...u&&t===`code_execution`?{dynamic:!0}:{}})}else if(e.name===`tool_search_tool_regex`||e.name===`tool_search_tool_bm25`){v[e.id]=e.name;let t=o.toCustomToolName(e.name);g[r.index]={type:`tool-call`,toolCallId:e.id,toolName:t,input:``,providerExecuted:!0,firstDelta:!0,providerToolName:e.name},n.enqueue({type:`tool-input-start`,id:e.id,toolName:t,providerExecuted:!0})}else if(e.name===`advisor`){let t=o.toCustomToolName(`advisor`);g[r.index]={type:`tool-call`,toolCallId:e.id,toolName:t,input:`{}`,providerExecuted:!0,firstDelta:!0,providerToolName:e.name},n.enqueue({type:`tool-input-start`,id:e.id,toolName:t,providerExecuted:!0})}return;case`web_fetch_tool_result`:e.content.type===`web_fetch_result`?(l.push({title:e.content.content.title??e.content.url,mediaType:e.content.content.source.media_type}),n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`web_fetch`),result:{type:`web_fetch_result`,url:e.content.url,retrievedAt:e.content.retrieved_at,content:{type:e.content.content.type,title:e.content.content.title,citations:e.content.content.citations,source:{type:e.content.content.source.type,mediaType:e.content.content.source.media_type,data:e.content.content.source.data}}}})):e.content.type===`web_fetch_tool_result_error`&&n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`web_fetch`),isError:!0,result:{type:`web_fetch_tool_result_error`,errorCode:e.content.error_code}});return;case`web_search_tool_result`:if(Array.isArray(e.content)){n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`web_search`),result:e.content.map(e=>({url:e.url,title:e.title,pageAge:e.page_age??null,encryptedContent:e.encrypted_content,type:e.type}))});for(let t of e.content)n.enqueue({type:`source`,sourceType:`url`,id:T(),url:t.url,title:t.title,providerMetadata:{anthropic:{pageAge:t.page_age??null}}})}else n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`web_search`),isError:!0,result:{type:`web_search_tool_result_error`,errorCode:e.content.error_code}});return;case`code_execution_tool_result`:e.content.type===`code_execution_result`?n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`code_execution`),result:{type:e.content.type,stdout:e.content.stdout,stderr:e.content.stderr,return_code:e.content.return_code,content:e.content.content??[]}}):e.content.type===`encrypted_code_execution_result`?n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`code_execution`),result:{type:e.content.type,encrypted_stdout:e.content.encrypted_stdout,stderr:e.content.stderr,return_code:e.content.return_code,content:e.content.content??[]}}):e.content.type===`code_execution_tool_result_error`&&n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`code_execution`),isError:!0,result:{type:`code_execution_tool_result_error`,errorCode:e.content.error_code}});return;case`bash_code_execution_tool_result`:case`text_editor_code_execution_tool_result`:n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`code_execution`),result:e.content});return;case`tool_search_tool_result`:{let t=v[e.tool_use_id];if(t==null){let e=o.toCustomToolName(`tool_search_tool_bm25`);o.toCustomToolName(`tool_search_tool_regex`),t=e===`tool_search_tool_bm25`?`tool_search_tool_regex`:`tool_search_tool_bm25`}e.content.type===`tool_search_tool_search_result`?n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(t),result:e.content.tool_references.map(e=>({type:e.type,toolName:e.tool_name}))}):n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(t),isError:!0,result:{type:`tool_search_tool_result_error`,errorCode:e.content.error_code}});return}case`advisor_tool_result`:{let t=o.toCustomToolName(`advisor`);e.content.type===`advisor_result`?n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,result:{type:`advisor_result`,text:e.content.text}}):e.content.type===`advisor_redacted_result`?n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,result:{type:`advisor_redacted_result`,encryptedContent:e.content.encrypted_content}}):n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,isError:!0,result:{type:`advisor_tool_result_error`,errorCode:e.content.error_code}});return}case`mcp_tool_use`:_[e.id]={type:`tool-call`,toolCallId:e.id,toolName:e.name,input:JSON.stringify(e.input),providerExecuted:!0,dynamic:!0,providerMetadata:{anthropic:{type:`mcp-tool-use`,serverName:e.server_name}}},n.enqueue(_[e.id]);return;case`mcp_tool_result`:n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:_[e.tool_use_id].toolName,isError:e.is_error,result:e.content,dynamic:!0,providerMetadata:_[e.tool_use_id].providerMetadata});return;default:throw Error(`Unsupported content block type: ${t}`)}}case`content_block_stop`:if(g[r.index]!=null){let e=g[r.index];switch(e.type){case`text`:n.enqueue({type:`text-end`,id:String(r.index)});break;case`reasoning`:n.enqueue({type:`reasoning-end`,id:String(r.index)});break;case`tool-call`:if(!(a&&e.toolName===`json`)){n.enqueue({type:`tool-input-end`,id:e.toolCallId});let t=e.input===``?`{}`:e.input;if(e.providerToolName===`code_execution`)try{let e=JSON.parse(t);typeof e==`object`&&e&&`code`in e&&!(`type`in e)&&(t=JSON.stringify({type:`programmatic-tool-call`,...e}))}catch{}n.enqueue({type:`tool-call`,toolCallId:e.toolCallId,toolName:e.toolName,input:t,providerExecuted:e.providerExecuted,...u&&e.providerToolName===`code_execution`?{dynamic:!0}:{},...e.caller&&{providerMetadata:{anthropic:{caller:e.caller}}}})}break}delete g[r.index]}w=void 0;return;case`content_block_delta`:{let e=r.delta.type;switch(e){case`text_delta`:if(a)return;n.enqueue({type:`text-delta`,id:String(r.index),delta:r.delta.text});return;case`thinking_delta`:n.enqueue({type:`reasoning-delta`,id:String(r.index),delta:r.delta.thinking});return;case`signature_delta`:w===`thinking`&&n.enqueue({type:`reasoning-delta`,id:String(r.index),delta:``,providerMetadata:{anthropic:{signature:r.delta.signature}}});return;case`compaction_delta`:r.delta.content!=null&&n.enqueue({type:`text-delta`,id:String(r.index),delta:r.delta.content});return;case`input_json_delta`:{let e=g[r.index],t=r.delta.partial_json;if(t.length===0)return;if(C){if(e?.type!==`text`)return;n.enqueue({type:`text-delta`,id:String(r.index),delta:t})}else{if(e?.type!==`tool-call`)return;e.firstDelta&&e.providerToolName===`code_execution`&&(t=`{"type": "programmatic-tool-call",${t.substring(1)}`),n.enqueue({type:`tool-input-delta`,id:e.toolCallId,delta:t}),e.input+=t,e.firstDelta=!1}return}case`citations_delta`:{let e=r.delta.citation,t=at(e,l,T);t&&n.enqueue(t);return}default:throw Error(`Unsupported delta type: ${e}`)}}case`message_start`:if(h.input_tokens=r.message.usage.input_tokens,h.cache_read_input_tokens=r.message.usage.cache_read_input_tokens??0,h.cache_creation_input_tokens=r.message.usage.cache_creation_input_tokens??0,b={...r.message.usage},r.message.container!=null&&(S={expiresAt:r.message.container.expires_at,id:r.message.container.id,skills:null}),r.message.stop_reason!=null&&(m={unified:Z({finishReason:r.message.stop_reason,isJsonResponseFromTool:C}),raw:r.message.stop_reason}),n.enqueue({type:`response-metadata`,id:r.message.id??void 0,modelId:r.message.model??void 0}),r.message.content!=null)for(let e=0;e<r.message.content.length;e++){let t=r.message.content[e];if(t.type===`tool_use`){let e=t.caller,r=e?{type:e.type,toolId:`tool_id`in e?e.tool_id:void 0}:void 0;n.enqueue({type:`tool-input-start`,id:t.id,toolName:t.name});let i=JSON.stringify(t.input??{});n.enqueue({type:`tool-input-delta`,id:t.id,delta:i}),n.enqueue({type:`tool-input-end`,id:t.id}),n.enqueue({type:`tool-call`,toolCallId:t.id,toolName:t.name,input:i,...r&&{providerMetadata:{anthropic:{caller:r}}}})}}return;case`message_delta`:r.usage.input_tokens!=null&&h.input_tokens!==r.usage.input_tokens&&(h.input_tokens=r.usage.input_tokens),h.output_tokens=r.usage.output_tokens,r.usage.cache_read_input_tokens!=null&&(h.cache_read_input_tokens=r.usage.cache_read_input_tokens),r.usage.cache_creation_input_tokens!=null&&(h.cache_creation_input_tokens=r.usage.cache_creation_input_tokens),r.usage.iterations!=null&&(h.iterations=r.usage.iterations),m={unified:Z({finishReason:r.delta.stop_reason,isJsonResponseFromTool:C}),raw:r.delta.stop_reason??void 0},x=r.delta.stop_sequence??null,S=r.delta.container==null?null:{expiresAt:r.delta.container.expires_at,id:r.delta.container.id,skills:r.delta.container.skills?.map(e=>({type:e.type,skillId:e.skill_id,version:e.version}))??null},r.context_management&&(y=lt(r.context_management)),b={...b,...r.usage};return;case`message_stop`:{let e={usage:b??null,stopSequence:x,iterations:h.iterations?h.iterations.map(e=>e.type===`advisor_message`?{type:e.type,model:e.model,inputTokens:e.input_tokens,outputTokens:e.output_tokens,...e.cache_creation_input_tokens?{cacheCreationInputTokens:e.cache_creation_input_tokens}:{},...e.cache_read_input_tokens?{cacheReadInputTokens:e.cache_read_input_tokens}:{}}:{type:e.type,inputTokens:e.input_tokens,outputTokens:e.output_tokens,...e.cache_creation_input_tokens?{cacheCreationInputTokens:e.cache_creation_input_tokens}:{},...e.cache_read_input_tokens?{cacheReadInputTokens:e.cache_read_input_tokens}:{}}):null,container:S,contextManagement:y},t={anthropic:e};c&&s!==`anthropic`&&(t[s]=e),n.enqueue({type:`finish`,finishReason:m,usage:Pe({usage:h,rawUsage:b}),providerMetadata:t});return}case`error`:n.enqueue({type:`error`,error:r.error});return;default:throw Error(`Unsupported chunk type: ${r}`)}}})).tee(),k=E.getReader();try{await k.read();let t=await k.read();if(t.value?.type===`raw`&&(t=await k.read()),t.value?.type===`error`){let r=t.value.error;throw new e({message:r.message,url:d,requestBodyValues:n,statusCode:r.type===`overloaded_error`?529:500,responseHeaders:f,responseBody:JSON.stringify(r),isRetryable:r.type===`overloaded_error`})}}finally{k.cancel().catch(()=>{}),k.releaseLock()}return{stream:O,request:{body:n},response:{headers:f}}}};function st(e){return e.includes(`claude-opus-4-7`)?{maxOutputTokens:128e3,supportsStructuredOutput:!0,supportsAdaptiveThinking:!0,rejectsSamplingParameters:!0,supportsXhighEffort:!0,isKnownModel:!0}:e.includes(`claude-sonnet-4-6`)||e.includes(`claude-opus-4-6`)?{maxOutputTokens:128e3,supportsStructuredOutput:!0,supportsAdaptiveThinking:!0,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:e.includes(`claude-sonnet-4-5`)||e.includes(`claude-opus-4-5`)||e.includes(`claude-haiku-4-5`)?{maxOutputTokens:64e3,supportsStructuredOutput:!0,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:e.includes(`claude-opus-4-1`)?{maxOutputTokens:32e3,supportsStructuredOutput:!0,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:e.includes(`claude-sonnet-4-`)?{maxOutputTokens:64e3,supportsStructuredOutput:!1,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:e.includes(`claude-opus-4-`)?{maxOutputTokens:32e3,supportsStructuredOutput:!1,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:e.includes(`claude-3-haiku`)?{maxOutputTokens:4096,supportsStructuredOutput:!1,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:{maxOutputTokens:4096,supportsStructuredOutput:!1,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!1}}function $(e){if(!e)return!1;let t=!1,n=!1;for(let r of e){if(`type`in r&&(r.type===`web_fetch_20260209`||r.type===`web_search_20260209`)){t=!0;continue}if(r.name===`code_execution`){n=!0;break}}return t&&!n}function ct({reasoning:e,supportsAdaptiveThinking:t,supportsXhighEffort:n,maxOutputTokensForModel:r,warnings:i}){if(!O(e))return;if(e===`none`)return{thinking:{type:`disabled`}};if(t)return{thinking:{type:`adaptive`},effort:E({reasoning:e,effortMap:{minimal:`low`,low:`low`,medium:`medium`,high:`high`,xhigh:n?`xhigh`:`max`},warnings:i})};let a=T({reasoning:e,maxOutputTokens:r,maxReasoningBudget:r,warnings:i});if(a!=null)return{thinking:{type:`enabled`,budgetTokens:a}}}function lt(e){return e?{appliedEdits:e.applied_edits.map(e=>{switch(e.type){case`clear_tool_uses_20250919`:return{type:e.type,clearedToolUses:e.cleared_tool_uses,clearedInputTokens:e.cleared_input_tokens};case`clear_thinking_20251015`:return{type:e.type,clearedThinkingTurns:e.cleared_thinking_turns,clearedInputTokens:e.cleared_input_tokens};case`compact_20260112`:return{type:e.type}}}).filter(e=>e!==void 0)}:null}var ut=H({id:`anthropic.bash_20241022`,inputSchema:B(()=>j(u({command:l(),restart:i().optional()})))});function dt(e={}){let{execute:t,...n}=e;return ut(t===void 0?{...n,execute:async({command:e},{abortSignal:t,experimental_sandbox:n})=>{if(!n)throw Error(`Sandbox is not available`);return await n.run({command:e,abortSignal:t})}}:{...n,...t===null?{}:{execute:t}})}var ft=H({id:`anthropic.bash_20250124`,inputSchema:B(()=>j(u({command:l(),restart:i().optional()})))});function pt(e={}){let{execute:t,...n}=e;return ft(t===void 0?{...n,execute:async({command:e},{abortSignal:t,experimental_sandbox:n})=>{if(!n)throw Error(`Sandbox is not available`);return await n.run({command:e,abortSignal:t})}}:{...n,...t===null?{}:{execute:t}})}var mt=H({id:`anthropic.computer_20241022`,inputSchema:B(()=>j(u({action:g([`key`,`type`,`mouse_move`,`left_click`,`left_click_drag`,`right_click`,`middle_click`,`double_click`,`screenshot`,`cursor_position`]),coordinate:o(h().int()).optional(),text:l().optional()})))}),ht=H({id:`anthropic.computer_20250124`,inputSchema:B(()=>j(u({action:g([`key`,`hold_key`,`type`,`cursor_position`,`mouse_move`,`left_mouse_down`,`left_mouse_up`,`left_click`,`left_click_drag`,`right_click`,`middle_click`,`double_click`,`triple_click`,`scroll`,`wait`,`screenshot`]),coordinate:s([h().int(),h().int()]).optional(),duration:h().optional(),scroll_amount:h().optional(),scroll_direction:g([`up`,`down`,`left`,`right`]).optional(),start_coordinate:s([h().int(),h().int()]).optional(),text:l().optional()})))}),gt=H({id:`anthropic.computer_20251124`,inputSchema:B(()=>j(u({action:g([`key`,`hold_key`,`type`,`cursor_position`,`mouse_move`,`left_mouse_down`,`left_mouse_up`,`left_click`,`left_click_drag`,`right_click`,`middle_click`,`double_click`,`triple_click`,`scroll`,`wait`,`screenshot`,`zoom`]),coordinate:s([h().int(),h().int()]).optional(),duration:h().optional(),region:s([h().int(),h().int(),h().int(),h().int()]).optional(),scroll_amount:h().optional(),scroll_direction:g([`up`,`down`,`left`,`right`]).optional(),start_coordinate:s([h().int(),h().int()]).optional(),text:l().optional()})))}),_t=H({id:`anthropic.memory_20250818`,inputSchema:B(()=>j(a(`command`,[u({command:p(`view`),path:l(),view_range:s([h(),h()]).optional()}),u({command:p(`create`),path:l(),file_text:l()}),u({command:p(`str_replace`),path:l(),old_str:l(),new_str:l()}),u({command:p(`insert`),path:l(),insert_line:h(),insert_text:l()}),u({command:p(`delete`),path:l()}),u({command:p(`rename`),old_path:l(),new_path:l()})])))}),vt=H({id:`anthropic.text_editor_20241022`,inputSchema:B(()=>j(u({command:g([`view`,`create`,`str_replace`,`insert`,`undo_edit`]),path:l(),file_text:l().optional(),insert_line:h().int().optional(),new_str:l().optional(),insert_text:l().optional(),old_str:l().optional(),view_range:o(h().int()).optional()})))}),yt=H({id:`anthropic.text_editor_20250124`,inputSchema:B(()=>j(u({command:g([`view`,`create`,`str_replace`,`insert`,`undo_edit`]),path:l(),file_text:l().optional(),insert_line:h().int().optional(),new_str:l().optional(),insert_text:l().optional(),old_str:l().optional(),view_range:o(h().int()).optional()})))}),bt=H({id:`anthropic.text_editor_20250429`,inputSchema:B(()=>j(u({command:g([`view`,`create`,`str_replace`,`insert`]),path:l(),file_text:l().optional(),insert_line:h().int().optional(),new_str:l().optional(),insert_text:l().optional(),old_str:l().optional(),view_range:o(h().int()).optional()})))}),xt=B(()=>j(o(u({type:p(`tool_reference`),toolName:l()})))),St=L({id:`anthropic.tool_search_bm25_20251119`,inputSchema:B(()=>j(u({query:l(),limit:h().optional()}))),outputSchema:xt,supportsDeferredResults:!0}),Ct={advisor_20260301:pe,bash_20241022:dt,bash_20250124:pt,codeExecution_20250522:Le,codeExecution_20250825:Be,codeExecution_20260120:Ue,computer_20241022:mt,computer_20250124:ht,computer_20251124:gt,memory_20250818:_t,textEditor_20241022:vt,textEditor_20250124:yt,textEditor_20250429:bt,textEditor_20250728:ge,webFetch_20250910:Me,webFetch_20260209:Oe,webSearch_20250305:we,webSearch_20260209:be,toolSearchRegex_20251119:Ke,toolSearchBm25_20251119:(e={})=>St(e)},wt=B(()=>j(u({id:l(),display_title:l().nullish(),name:l().nullish(),description:l().nullish(),latest_version:l().nullish(),source:l(),created_at:l(),updated_at:l()})));B(()=>j(u({data:o(u({version:l()}))})));var Tt=B(()=>j(u({type:l(),skill_id:l(),name:l().nullish(),description:l().nullish()}))),Et=class{constructor(e){this.config=e,this.specificationVersion=`v4`}get provider(){return this.config.provider}async getHeaders(){return W(await q(this.config.headers),{"anthropic-beta":`skills-2025-10-02`})}async fetchVersionMetadata({skillId:e,version:t,headers:n}){let{value:r}=await K({url:`${this.config.baseURL}/skills/${e}/versions/${t}`,headers:n,failedResponseHandler:J,successfulResponseHandler:I(Tt),fetch:this.config.fetch});return{...r.name==null?{}:{name:r.name},...r.description==null?{}:{description:r.description}}}async uploadSkill(e){let t=[],n=new FormData;e.displayTitle!=null&&n.append(`display_title`,e.displayTitle);for(let t of e.files){let e=N(t.data);n.append(`files[]`,new Blob([e]),t.path)}let r=await this.getHeaders(),{value:i}=await w({url:`${this.config.baseURL}/skills`,headers:r,formData:n,failedResponseHandler:J,successfulResponseHandler:I(wt),fetch:this.config.fetch}),a=i.latest_version==null?{}:await this.fetchVersionMetadata({skillId:i.id,version:i.latest_version,headers:r}),o=a.name??i.name,s=a.description??i.description;return{providerReference:{anthropic:i.id},...i.display_title==null?{}:{displayTitle:i.display_title},...o==null?{}:{name:o},...s==null?{}:{description:s},...i.latest_version==null?{}:{latestVersion:i.latest_version},providerMetadata:{anthropic:{...i.source==null?{}:{source:i.source},...i.created_at==null?{}:{createdAt:i.created_at},...i.updated_at==null?{}:{updatedAt:i.updated_at}}},warnings:t}}},Dt=`4.0.0-canary.60`;function Ot(e={}){let r=S(z({settingValue:e.baseURL,environmentVariableName:`ANTHROPIC_BASE_URL`}))??`https://api.anthropic.com/v1`,i=e.name??`anthropic.messages`;if(e.apiKey&&e.authToken)throw new t({argument:`apiKey/authToken`,message:`Both apiKey and authToken were provided. Please use only one authentication method.`});let a=()=>U({"anthropic-version":`2023-06-01`,...e.authToken?{Authorization:`Bearer ${e.authToken}`}:{"x-api-key":_({apiKey:e.apiKey,environmentVariableName:`ANTHROPIC_API_KEY`,description:`Anthropic`})},...e.headers},`ai-sdk/anthropic/${Dt}`),o=t=>new ot(t,{provider:i,baseURL:r,headers:a,fetch:e.fetch,generateId:e.generateId??P,supportedUrls:()=>({"image/*":[/^https?:\/\/.*$/],"application/pdf":[/^https?:\/\/.*$/]})}),s=()=>new Et({provider:`${i.replace(`.messages`,``)}.skills`,baseURL:r,headers:a,fetch:e.fetch}),c=function(e){if(new.target)throw Error(`The Anthropic model function cannot be called with the new keyword.`);return o(e)};return c.specificationVersion=`v4`,c.languageModel=o,c.chat=o,c.messages=o,c.embeddingModel=e=>{throw new n({modelId:e,modelType:`embeddingModel`})},c.textEmbeddingModel=c.embeddingModel,c.imageModel=e=>{throw new n({modelId:e,modelType:`imageModel`})},c.files=()=>new re({provider:i,baseURL:r,headers:a,fetch:e.fetch}),c.skills=s,c.tools=Ct,c}var kt=Ot();function At({steps:e}){for(let t=e.length-1;t>=0;t--){let n=e[t].providerMetadata?.anthropic?.container?.id;if(n)return{providerOptions:{anthropic:{container:{id:n}}}}}}export{Dt as VERSION,kt as anthropic,Ot as createAnthropic,At as forwardAnthropicContainerIdFromLastStep};
|
|
1
|
+
import{APICallError as e,InvalidArgumentError as t,NoSuchModelError as n,UnsupportedFunctionalityError as r}from"../provider/index.js";import{At as i,Bt as a,Et as o,Kn as s,Nn as c,Rn as l,Tn as u,Xn as d,Zn as f,dn as p,fn as m,wn as h,yt as g}from"../../_chunks/workflow/schemas-DmgDnhW3.js";import{A as _,B as v,C as y,D as b,I as x,J as S,K as C,L as w,M as T,N as E,R as D,T as O,V as k,W as A,X as ee,Y as j,Z as M,a as N,b as P,d as F,f as I,g as te,h as L,i as R,j as z,k as B,o as V,p as H,q as U,r as W,u as G,x as K,z as q}from"../../_chunks/workflow/dist-Dl-X5RB3.js";var J=F({errorSchema:B(()=>j(u({type:p(`error`),error:u({type:l(),message:l()})}))),errorToMessage:e=>e.error.message}),ne=B(()=>j(u({id:l(),type:p(`file`),filename:l(),mime_type:l(),size_bytes:h(),created_at:l(),downloadable:i().nullish()}))),re=class{constructor(e){this.config=e,this.specificationVersion=`v4`}get provider(){return this.config.provider}async uploadFile({data:e,mediaType:t,filename:n}){let r=N(e),i=new Blob([r],{type:t}),a=new FormData;n==null?a.append(`file`,i):a.append(`file`,i,n);let{value:o}=await w({url:`${this.config.baseURL}/files`,headers:W(this.config.headers(),{"anthropic-beta":`files-api-2025-04-14`}),formData:a,failedResponseHandler:J,successfulResponseHandler:I(ne),fetch:this.config.fetch});return{warnings:[],providerReference:{anthropic:o.id},mediaType:o.mime_type??t,filename:o.filename??n,providerMetadata:{anthropic:{filename:o.filename,mimeType:o.mime_type,sizeBytes:o.size_bytes,createdAt:o.created_at,...o.downloadable==null?{}:{downloadable:o.downloadable}}}}}},ie=B(()=>j(u({type:p(`message`),id:l().nullish(),model:l().nullish(),content:o(a(`type`,[u({type:p(`text`),text:l(),citations:o(a(`type`,[u({type:p(`web_search_result_location`),cited_text:l(),url:l(),title:l(),encrypted_index:l()}),u({type:p(`page_location`),cited_text:l(),document_index:h(),document_title:l().nullable(),start_page_number:h(),end_page_number:h()}),u({type:p(`char_location`),cited_text:l(),document_index:h(),document_title:l().nullable(),start_char_index:h(),end_char_index:h()})])).optional()}),u({type:p(`thinking`),thinking:l(),signature:l()}),u({type:p(`redacted_thinking`),data:l()}),u({type:p(`compaction`),content:l()}),u({type:p(`tool_use`),id:l(),name:l(),input:f(),caller:d([u({type:p(`code_execution_20250825`),tool_id:l()}),u({type:p(`code_execution_20260120`),tool_id:l()}),u({type:p(`direct`)})]).optional()}),u({type:p(`server_tool_use`),id:l(),name:l(),input:c(l(),f()).nullish(),caller:d([u({type:p(`code_execution_20260120`),tool_id:l()}),u({type:p(`direct`)})]).optional()}),u({type:p(`mcp_tool_use`),id:l(),name:l(),input:f(),server_name:l()}),u({type:p(`mcp_tool_result`),tool_use_id:l(),is_error:i(),content:o(d([l(),u({type:p(`text`),text:l()})]))}),u({type:p(`web_fetch_tool_result`),tool_use_id:l(),content:d([u({type:p(`web_fetch_result`),url:l(),retrieved_at:l(),content:u({type:p(`document`),title:l().nullable(),citations:u({enabled:i()}).optional(),source:d([u({type:p(`base64`),media_type:p(`application/pdf`),data:l()}),u({type:p(`text`),media_type:p(`text/plain`),data:l()})])})}),u({type:p(`web_fetch_tool_result_error`),error_code:l()})])}),u({type:p(`web_search_tool_result`),tool_use_id:l(),content:d([o(u({type:p(`web_search_result`),url:l(),title:l(),encrypted_content:l(),page_age:l().nullish()})),u({type:p(`web_search_tool_result_error`),error_code:l()})])}),u({type:p(`code_execution_tool_result`),tool_use_id:l(),content:d([u({type:p(`code_execution_result`),stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`encrypted_code_execution_result`),encrypted_stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`code_execution_tool_result_error`),error_code:l()})])}),u({type:p(`bash_code_execution_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`bash_code_execution_result`),content:o(u({type:p(`bash_code_execution_output`),file_id:l()})),stdout:l(),stderr:l(),return_code:h()}),u({type:p(`bash_code_execution_tool_result_error`),error_code:l()})])}),u({type:p(`text_editor_code_execution_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`text_editor_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_view_result`),content:l(),file_type:l(),num_lines:h().nullable(),start_line:h().nullable(),total_lines:h().nullable()}),u({type:p(`text_editor_code_execution_create_result`),is_file_update:i()}),u({type:p(`text_editor_code_execution_str_replace_result`),lines:o(l()).nullable(),new_lines:h().nullable(),new_start:h().nullable(),old_lines:h().nullable(),old_start:h().nullable()})])}),u({type:p(`tool_search_tool_result`),tool_use_id:l(),content:d([u({type:p(`tool_search_tool_search_result`),tool_references:o(u({type:p(`tool_reference`),tool_name:l()}))}),u({type:p(`tool_search_tool_result_error`),error_code:l()})])}),u({type:p(`advisor_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`advisor_result`),text:l()}),u({type:p(`advisor_redacted_result`),encrypted_content:l()}),u({type:p(`advisor_tool_result_error`),error_code:l()})])})])),stop_reason:l().nullish(),stop_sequence:l().nullish(),usage:m({input_tokens:h(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish(),iterations:o(d([u({type:d([p(`compaction`),p(`message`)]),input_tokens:h(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish()}),u({type:p(`advisor_message`),model:l(),input_tokens:h(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish()})])).nullish()}),container:u({expires_at:l(),id:l(),skills:o(u({type:d([p(`anthropic`),p(`custom`)]),skill_id:l(),version:l()})).nullish()}).nullish(),context_management:u({applied_edits:o(d([u({type:p(`clear_tool_uses_20250919`),cleared_tool_uses:h(),cleared_input_tokens:h()}),u({type:p(`clear_thinking_20251015`),cleared_thinking_turns:h(),cleared_input_tokens:h()}),u({type:p(`compact_20260112`)})]))}).nullish()}))),ae=B(()=>j(a(`type`,[u({type:p(`message_start`),message:u({id:l().nullish(),model:l().nullish(),role:l().nullish(),usage:m({input_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish()}),content:o(a(`type`,[u({type:p(`tool_use`),id:l(),name:l(),input:f(),caller:d([u({type:p(`code_execution_20250825`),tool_id:l()}),u({type:p(`code_execution_20260120`),tool_id:l()}),u({type:p(`direct`)})]).optional()})])).nullish(),stop_reason:l().nullish(),container:u({expires_at:l(),id:l()}).nullish()})}),u({type:p(`content_block_start`),index:h(),content_block:a(`type`,[u({type:p(`text`),text:l()}),u({type:p(`thinking`),thinking:l()}),u({type:p(`tool_use`),id:l(),name:l(),input:c(l(),f()).optional(),caller:d([u({type:p(`code_execution_20250825`),tool_id:l()}),u({type:p(`code_execution_20260120`),tool_id:l()}),u({type:p(`direct`)})]).optional()}),u({type:p(`redacted_thinking`),data:l()}),u({type:p(`compaction`),content:l().nullish()}),u({type:p(`server_tool_use`),id:l(),name:l(),input:c(l(),f()).nullish(),caller:d([u({type:p(`code_execution_20260120`),tool_id:l()}),u({type:p(`direct`)})]).optional()}),u({type:p(`mcp_tool_use`),id:l(),name:l(),input:f(),server_name:l()}),u({type:p(`mcp_tool_result`),tool_use_id:l(),is_error:i(),content:o(d([l(),u({type:p(`text`),text:l()})]))}),u({type:p(`web_fetch_tool_result`),tool_use_id:l(),content:d([u({type:p(`web_fetch_result`),url:l(),retrieved_at:l(),content:u({type:p(`document`),title:l().nullable(),citations:u({enabled:i()}).optional(),source:d([u({type:p(`base64`),media_type:p(`application/pdf`),data:l()}),u({type:p(`text`),media_type:p(`text/plain`),data:l()})])})}),u({type:p(`web_fetch_tool_result_error`),error_code:l()})])}),u({type:p(`web_search_tool_result`),tool_use_id:l(),content:d([o(u({type:p(`web_search_result`),url:l(),title:l(),encrypted_content:l(),page_age:l().nullish()})),u({type:p(`web_search_tool_result_error`),error_code:l()})])}),u({type:p(`code_execution_tool_result`),tool_use_id:l(),content:d([u({type:p(`code_execution_result`),stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`encrypted_code_execution_result`),encrypted_stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`code_execution_tool_result_error`),error_code:l()})])}),u({type:p(`bash_code_execution_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`bash_code_execution_result`),content:o(u({type:p(`bash_code_execution_output`),file_id:l()})),stdout:l(),stderr:l(),return_code:h()}),u({type:p(`bash_code_execution_tool_result_error`),error_code:l()})])}),u({type:p(`text_editor_code_execution_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`text_editor_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_view_result`),content:l(),file_type:l(),num_lines:h().nullable(),start_line:h().nullable(),total_lines:h().nullable()}),u({type:p(`text_editor_code_execution_create_result`),is_file_update:i()}),u({type:p(`text_editor_code_execution_str_replace_result`),lines:o(l()).nullable(),new_lines:h().nullable(),new_start:h().nullable(),old_lines:h().nullable(),old_start:h().nullable()})])}),u({type:p(`tool_search_tool_result`),tool_use_id:l(),content:d([u({type:p(`tool_search_tool_search_result`),tool_references:o(u({type:p(`tool_reference`),tool_name:l()}))}),u({type:p(`tool_search_tool_result_error`),error_code:l()})])}),u({type:p(`advisor_tool_result`),tool_use_id:l(),content:a(`type`,[u({type:p(`advisor_result`),text:l()}),u({type:p(`advisor_redacted_result`),encrypted_content:l()}),u({type:p(`advisor_tool_result_error`),error_code:l()})])})])}),u({type:p(`content_block_delta`),index:h(),delta:a(`type`,[u({type:p(`input_json_delta`),partial_json:l()}),u({type:p(`text_delta`),text:l()}),u({type:p(`thinking_delta`),thinking:l()}),u({type:p(`signature_delta`),signature:l()}),u({type:p(`compaction_delta`),content:l().nullish()}),u({type:p(`citations_delta`),citation:a(`type`,[u({type:p(`web_search_result_location`),cited_text:l(),url:l(),title:l(),encrypted_index:l()}),u({type:p(`page_location`),cited_text:l(),document_index:h(),document_title:l().nullable(),start_page_number:h(),end_page_number:h()}),u({type:p(`char_location`),cited_text:l(),document_index:h(),document_title:l().nullable(),start_char_index:h(),end_char_index:h()})])})])}),u({type:p(`content_block_stop`),index:h()}),u({type:p(`error`),error:u({type:l(),message:l()})}),u({type:p(`message_delta`),delta:u({stop_reason:l().nullish(),stop_sequence:l().nullish(),container:u({expires_at:l(),id:l(),skills:o(u({type:d([p(`anthropic`),p(`custom`)]),skill_id:l(),version:l()})).nullish()}).nullish()}),usage:m({input_tokens:h().nullish(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish(),iterations:o(d([u({type:d([p(`compaction`),p(`message`)]),input_tokens:h(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish()}),u({type:p(`advisor_message`),model:l(),input_tokens:h(),output_tokens:h(),cache_creation_input_tokens:h().nullish(),cache_read_input_tokens:h().nullish()})])).nullish()}),context_management:u({applied_edits:o(d([u({type:p(`clear_tool_uses_20250919`),cleared_tool_uses:h(),cleared_input_tokens:h()}),u({type:p(`clear_thinking_20251015`),cleared_thinking_turns:h(),cleared_input_tokens:h()}),u({type:p(`compact_20260112`)})]))}).nullish()}),u({type:p(`message_stop`)}),u({type:p(`ping`)})]))),oe=B(()=>j(u({signature:l().optional(),redactedData:l().optional()}))),Y=u({containerUpload:i().optional(),citations:u({enabled:i()}).optional(),title:l().optional(),context:l().optional()}),se=u({sendReasoning:i().optional(),structuredOutputMode:g([`outputFormat`,`jsonTool`,`auto`]).optional(),thinking:a(`type`,[u({type:p(`adaptive`),display:g([`omitted`,`summarized`]).optional()}),u({type:p(`enabled`),budgetTokens:h().optional()}),u({type:p(`disabled`)})]).optional(),disableParallelToolUse:i().optional(),cacheControl:u({type:p(`ephemeral`),ttl:d([p(`5m`),p(`1h`)]).optional()}).optional(),metadata:u({userId:l().optional()}).optional(),mcpServers:o(u({type:p(`url`),name:l(),url:l(),authorizationToken:l().nullish(),toolConfiguration:u({enabled:i().nullish(),allowedTools:o(l()).nullish()}).nullish()})).optional(),container:u({id:l().optional(),skills:o(a(`type`,[u({type:p(`anthropic`),skillId:l(),version:l().optional()}),u({type:p(`custom`),providerReference:c(l(),l()),version:l().optional()})])).optional()}).optional(),toolStreaming:i().optional(),effort:g([`low`,`medium`,`high`,`xhigh`,`max`]).optional(),taskBudget:u({type:p(`tokens`),total:h().int().min(2e4),remaining:h().int().min(0).optional()}).optional(),speed:g([`fast`,`standard`]).optional(),inferenceGeo:g([`us`,`global`]).optional(),anthropicBeta:o(l()).optional(),contextManagement:u({edits:o(a(`type`,[u({type:p(`clear_tool_uses_20250919`),trigger:a(`type`,[u({type:p(`input_tokens`),value:h()}),u({type:p(`tool_uses`),value:h()})]).optional(),keep:u({type:p(`tool_uses`),value:h()}).optional(),clearAtLeast:u({type:p(`input_tokens`),value:h()}).optional(),clearToolInputs:i().optional(),excludeTools:o(l()).optional()}),u({type:p(`clear_thinking_20251015`),keep:d([p(`all`),u({type:p(`thinking_turns`),value:h()})]).optional()}),u({type:p(`compact_20260112`),trigger:u({type:p(`input_tokens`),value:h()}).optional(),pauseAfterCompaction:i().optional(),instructions:l().optional()})]))}).optional()}),ce=4;function le(e){let t=e?.anthropic;return t?.cacheControl??t?.cache_control}var X=class{constructor(){this.breakpointCount=0,this.warnings=[]}getCacheControl(e,t){let n=le(e);if(n){if(!t.canCache){this.warnings.push({type:`unsupported`,feature:`cache_control on non-cacheable context`,details:`cache_control cannot be set on ${t.type}. It will be ignored.`});return}if(this.breakpointCount++,this.breakpointCount>ce){this.warnings.push({type:`unsupported`,feature:`cacheControl breakpoint limit`,details:`Maximum ${ce} cache breakpoints exceeded (found ${this.breakpointCount}). This breakpoint will be ignored.`});return}return n}}getWarnings(){return this.warnings}},ue=B(()=>j(u({model:l(),maxUses:h().optional(),caching:u({type:p(`ephemeral`),ttl:d([p(`5m`),p(`1h`)])}).optional()}))),de=B(()=>j(a(`type`,[u({type:p(`advisor_result`),text:l()}),u({type:p(`advisor_redacted_result`),encryptedContent:l()}),u({type:p(`advisor_tool_result_error`),errorCode:l()})]))),fe=L({id:`anthropic.advisor_20260301`,inputSchema:B(()=>j(u({}).strict())),outputSchema:de,supportsDeferredResults:!0}),pe=e=>fe(e),me=B(()=>j(u({maxCharacters:h().optional()}))),he=H({id:`anthropic.text_editor_20250728`,inputSchema:B(()=>j(u({command:g([`view`,`create`,`str_replace`,`insert`]),path:l(),file_text:l().optional(),insert_line:h().int().optional(),new_str:l().optional(),insert_text:l().optional(),old_str:l().optional(),view_range:o(h().int()).optional()})))}),ge=(e={})=>he(e),_e=B(()=>j(u({maxUses:h().optional(),allowedDomains:o(l()).optional(),blockedDomains:o(l()).optional(),userLocation:u({type:p(`approximate`),city:l().optional(),region:l().optional(),country:l().optional(),timezone:l().optional()}).optional()}))),ve=B(()=>j(o(u({url:l(),title:l().nullable(),pageAge:l().nullable(),encryptedContent:l(),type:p(`web_search_result`)})))),ye=L({id:`anthropic.web_search_20260209`,inputSchema:B(()=>j(u({query:l()}))),outputSchema:ve,supportsDeferredResults:!0}),be=(e={})=>ye(e),xe=B(()=>j(u({maxUses:h().optional(),allowedDomains:o(l()).optional(),blockedDomains:o(l()).optional(),userLocation:u({type:p(`approximate`),city:l().optional(),region:l().optional(),country:l().optional(),timezone:l().optional()}).optional()}))),Se=B(()=>j(o(u({url:l(),title:l().nullable(),pageAge:l().nullable(),encryptedContent:l(),type:p(`web_search_result`)})))),Ce=L({id:`anthropic.web_search_20250305`,inputSchema:B(()=>j(u({query:l()}))),outputSchema:Se,supportsDeferredResults:!0}),we=(e={})=>Ce(e),Te=B(()=>j(u({maxUses:h().optional(),allowedDomains:o(l()).optional(),blockedDomains:o(l()).optional(),citations:u({enabled:i()}).optional(),maxContentTokens:h().optional()}))),Ee=B(()=>j(u({type:p(`web_fetch_result`),url:l(),content:u({type:p(`document`),title:l().nullable(),citations:u({enabled:i()}).optional(),source:d([u({type:p(`base64`),mediaType:p(`application/pdf`),data:l()}),u({type:p(`text`),mediaType:p(`text/plain`),data:l()})])}),retrievedAt:l().nullable()}))),De=L({id:`anthropic.web_fetch_20260209`,inputSchema:B(()=>j(u({url:l()}))),outputSchema:Ee,supportsDeferredResults:!0}),Oe=(e={})=>De(e),ke=B(()=>j(u({maxUses:h().optional(),allowedDomains:o(l()).optional(),blockedDomains:o(l()).optional(),citations:u({enabled:i()}).optional(),maxContentTokens:h().optional()}))),Ae=B(()=>j(u({type:p(`web_fetch_result`),url:l(),content:u({type:p(`document`),title:l().nullable(),citations:u({enabled:i()}).optional(),source:d([u({type:p(`base64`),mediaType:p(`application/pdf`),data:l()}),u({type:p(`text`),mediaType:p(`text/plain`),data:l()})])}),retrievedAt:l().nullable()}))),je=L({id:`anthropic.web_fetch_20250910`,inputSchema:B(()=>j(u({url:l()}))),outputSchema:Ae,supportsDeferredResults:!0}),Me=(e={})=>je(e);async function Ne({tools:e,toolChoice:t,disableParallelToolUse:n,cacheControlValidator:i,supportsStructuredOutput:a,supportsStrictTools:o,defaultEagerInputStreaming:s=!1}){e=e?.length?e:void 0;let c=[],l=new Set,u=i||new X;if(e==null)return{tools:void 0,toolChoice:void 0,toolWarnings:c,betas:l};let d=[];for(let t of e)switch(t.type){case`function`:{let e=u.getCacheControl(t.providerOptions,{type:`tool definition`,canCache:!0}),n=t.providerOptions?.anthropic,r=n?.eagerInputStreaming??s,i=n?.deferLoading,f=n?.allowedCallers;!o&&t.strict!=null&&c.push({type:`unsupported`,feature:`strict`,details:`Tool '${t.name}' has strict: ${t.strict}, but strict mode is not supported by this provider. The strict property will be ignored.`}),d.push({name:t.name,description:t.description,input_schema:t.inputSchema,cache_control:e,...r?{eager_input_streaming:!0}:{},...o===!0&&t.strict!=null?{strict:t.strict}:{},...i==null?{}:{defer_loading:i},...f==null?{}:{allowed_callers:f},...t.inputExamples==null?{}:{input_examples:t.inputExamples.map(e=>e.input)}}),a===!0&&l.add(`structured-outputs-2025-11-13`),(t.inputExamples!=null||f!=null)&&l.add(`advanced-tool-use-2025-11-20`);break}case`provider`:switch(t.id){case`anthropic.code_execution_20250522`:l.add(`code-execution-2025-05-22`),d.push({type:`code_execution_20250522`,name:`code_execution`,cache_control:void 0});break;case`anthropic.code_execution_20250825`:l.add(`code-execution-2025-08-25`),d.push({type:`code_execution_20250825`,name:`code_execution`});break;case`anthropic.code_execution_20260120`:d.push({type:`code_execution_20260120`,name:`code_execution`});break;case`anthropic.computer_20250124`:l.add(`computer-use-2025-01-24`),d.push({name:`computer`,type:`computer_20250124`,display_width_px:t.args.displayWidthPx,display_height_px:t.args.displayHeightPx,display_number:t.args.displayNumber,cache_control:void 0});break;case`anthropic.computer_20251124`:l.add(`computer-use-2025-11-24`),d.push({name:`computer`,type:`computer_20251124`,display_width_px:t.args.displayWidthPx,display_height_px:t.args.displayHeightPx,display_number:t.args.displayNumber,enable_zoom:t.args.enableZoom,cache_control:void 0});break;case`anthropic.computer_20241022`:l.add(`computer-use-2024-10-22`),d.push({name:`computer`,type:`computer_20241022`,display_width_px:t.args.displayWidthPx,display_height_px:t.args.displayHeightPx,display_number:t.args.displayNumber,cache_control:void 0});break;case`anthropic.text_editor_20250124`:l.add(`computer-use-2025-01-24`),d.push({name:`str_replace_editor`,type:`text_editor_20250124`,cache_control:void 0});break;case`anthropic.text_editor_20241022`:l.add(`computer-use-2024-10-22`),d.push({name:`str_replace_editor`,type:`text_editor_20241022`,cache_control:void 0});break;case`anthropic.text_editor_20250429`:l.add(`computer-use-2025-01-24`),d.push({name:`str_replace_based_edit_tool`,type:`text_editor_20250429`,cache_control:void 0});break;case`anthropic.text_editor_20250728`:{let e=await C({value:t.args,schema:me});d.push({name:`str_replace_based_edit_tool`,type:`text_editor_20250728`,max_characters:e.maxCharacters,cache_control:void 0});break}case`anthropic.bash_20250124`:l.add(`computer-use-2025-01-24`),d.push({name:`bash`,type:`bash_20250124`,cache_control:void 0});break;case`anthropic.bash_20241022`:l.add(`computer-use-2024-10-22`),d.push({name:`bash`,type:`bash_20241022`,cache_control:void 0});break;case`anthropic.memory_20250818`:l.add(`context-management-2025-06-27`),d.push({name:`memory`,type:`memory_20250818`});break;case`anthropic.web_fetch_20250910`:{l.add(`web-fetch-2025-09-10`);let e=await C({value:t.args,schema:ke});d.push({type:`web_fetch_20250910`,name:`web_fetch`,max_uses:e.maxUses,allowed_domains:e.allowedDomains,blocked_domains:e.blockedDomains,citations:e.citations,max_content_tokens:e.maxContentTokens,cache_control:void 0});break}case`anthropic.web_fetch_20260209`:{l.add(`code-execution-web-tools-2026-02-09`);let e=await C({value:t.args,schema:Te});d.push({type:`web_fetch_20260209`,name:`web_fetch`,max_uses:e.maxUses,allowed_domains:e.allowedDomains,blocked_domains:e.blockedDomains,citations:e.citations,max_content_tokens:e.maxContentTokens,cache_control:void 0});break}case`anthropic.web_search_20250305`:{let e=await C({value:t.args,schema:xe});d.push({type:`web_search_20250305`,name:`web_search`,max_uses:e.maxUses,allowed_domains:e.allowedDomains,blocked_domains:e.blockedDomains,user_location:e.userLocation,cache_control:void 0});break}case`anthropic.web_search_20260209`:{l.add(`code-execution-web-tools-2026-02-09`);let e=await C({value:t.args,schema:_e});d.push({type:`web_search_20260209`,name:`web_search`,max_uses:e.maxUses,allowed_domains:e.allowedDomains,blocked_domains:e.blockedDomains,user_location:e.userLocation,cache_control:void 0});break}case`anthropic.tool_search_regex_20251119`:d.push({type:`tool_search_tool_regex_20251119`,name:`tool_search_tool_regex`});break;case`anthropic.tool_search_bm25_20251119`:d.push({type:`tool_search_tool_bm25_20251119`,name:`tool_search_tool_bm25`});break;case`anthropic.advisor_20260301`:{l.add(`advisor-tool-2026-03-01`);let e=await C({value:t.args,schema:ue});d.push({type:`advisor_20260301`,name:`advisor`,model:e.model,...e.maxUses!==void 0&&{max_uses:e.maxUses},...e.caching!==void 0&&{caching:e.caching}});break}default:c.push({type:`unsupported`,feature:`provider-defined tool ${t.id}`});break}break;default:c.push({type:`unsupported`,feature:`tool ${t}`});break}if(t==null)return{tools:d,toolChoice:n?{type:`auto`,disable_parallel_tool_use:n}:void 0,toolWarnings:c,betas:l};let f=t.type;switch(f){case`auto`:return{tools:d,toolChoice:{type:`auto`,disable_parallel_tool_use:n},toolWarnings:c,betas:l};case`required`:return{tools:d,toolChoice:{type:`any`,disable_parallel_tool_use:n},toolWarnings:c,betas:l};case`none`:return{tools:void 0,toolChoice:void 0,toolWarnings:c,betas:l};case`tool`:return{tools:d,toolChoice:{type:`tool`,name:t.toolName,disable_parallel_tool_use:n},toolWarnings:c,betas:l};default:throw new r({functionality:`tool choice type: ${f}`})}}function Pe({usage:e,rawUsage:t}){let n=e.cache_creation_input_tokens??0,r=e.cache_read_input_tokens??0,i,a;if(e.iterations&&e.iterations.length>0){let t=e.iterations.filter(e=>e.type===`compaction`||e.type===`message`);if(t.length>0){let e=t.reduce((e,t)=>({input:e.input+t.input_tokens,output:e.output+t.output_tokens}),{input:0,output:0});i=e.input,a=e.output}else i=e.input_tokens,a=e.output_tokens}else i=e.input_tokens,a=e.output_tokens;return{inputTokens:{total:i+n+r,noCache:i,cacheRead:r,cacheWrite:n},outputTokens:{total:a,text:void 0,reasoning:void 0},raw:t??e}}var Fe=B(()=>j(u({type:p(`code_execution_result`),stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}))),Ie=L({id:`anthropic.code_execution_20250522`,inputSchema:B(()=>j(u({code:l()}))),outputSchema:Fe}),Le=(e={})=>Ie(e),Re=B(()=>j(a(`type`,[u({type:p(`code_execution_result`),stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`bash_code_execution_result`),content:o(u({type:p(`bash_code_execution_output`),file_id:l()})),stdout:l(),stderr:l(),return_code:h()}),u({type:p(`bash_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_view_result`),content:l(),file_type:l(),num_lines:h().nullable(),start_line:h().nullable(),total_lines:h().nullable()}),u({type:p(`text_editor_code_execution_create_result`),is_file_update:i()}),u({type:p(`text_editor_code_execution_str_replace_result`),lines:o(l()).nullable(),new_lines:h().nullable(),new_start:h().nullable(),old_lines:h().nullable(),old_start:h().nullable()})]))),ze=L({id:`anthropic.code_execution_20250825`,inputSchema:B(()=>j(a(`type`,[u({type:p(`programmatic-tool-call`),code:l()}),u({type:p(`bash_code_execution`),command:l()}),a(`command`,[u({type:p(`text_editor_code_execution`),command:p(`view`),path:l()}),u({type:p(`text_editor_code_execution`),command:p(`create`),path:l(),file_text:l().nullish()}),u({type:p(`text_editor_code_execution`),command:p(`str_replace`),path:l(),old_str:l(),new_str:l()})])]))),outputSchema:Re,supportsDeferredResults:!0}),Be=(e={})=>ze(e),Ve=B(()=>j(a(`type`,[u({type:p(`code_execution_result`),stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`encrypted_code_execution_result`),encrypted_stdout:l(),stderr:l(),return_code:h(),content:o(u({type:p(`code_execution_output`),file_id:l()})).optional().default([])}),u({type:p(`bash_code_execution_result`),content:o(u({type:p(`bash_code_execution_output`),file_id:l()})),stdout:l(),stderr:l(),return_code:h()}),u({type:p(`bash_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_tool_result_error`),error_code:l()}),u({type:p(`text_editor_code_execution_view_result`),content:l(),file_type:l(),num_lines:h().nullable(),start_line:h().nullable(),total_lines:h().nullable()}),u({type:p(`text_editor_code_execution_create_result`),is_file_update:i()}),u({type:p(`text_editor_code_execution_str_replace_result`),lines:o(l()).nullable(),new_lines:h().nullable(),new_start:h().nullable(),old_lines:h().nullable(),old_start:h().nullable()})]))),He=L({id:`anthropic.code_execution_20260120`,inputSchema:B(()=>j(a(`type`,[u({type:p(`programmatic-tool-call`),code:l()}),u({type:p(`bash_code_execution`),command:l()}),a(`command`,[u({type:p(`text_editor_code_execution`),command:p(`view`),path:l()}),u({type:p(`text_editor_code_execution`),command:p(`create`),path:l(),file_text:l().nullish()}),u({type:p(`text_editor_code_execution`),command:p(`str_replace`),path:l(),old_str:l(),new_str:l()})])]))),outputSchema:Ve,supportsDeferredResults:!0}),Ue=(e={})=>He(e),We=B(()=>j(o(u({type:p(`tool_reference`),toolName:l()})))),Ge=L({id:`anthropic.tool_search_regex_20251119`,inputSchema:B(()=>j(u({pattern:l(),limit:h().optional()}))),outputSchema:We,supportsDeferredResults:!0}),Ke=(e={})=>Ge(e);function qe(e){return typeof e==`string`?new TextDecoder().decode(R(e)):new TextDecoder().decode(e)}function Je(e){try{if(typeof e==`string`)return JSON.parse(e);if(typeof e==`object`&&e)return e}catch{let t=e?.errorCode;return{errorCode:typeof t==`string`?t:`unavailable`}}return{}}async function Ye({prompt:e,sendReasoning:t,warnings:n,cacheControlValidator:i,toolNameMapping:a}){let o=new Set,s=Xe(e),c=i||new X,l,u=[];async function d(e){return(await x({provider:`anthropic`,providerOptions:e,schema:Y}))?.citations?.enabled??!1}async function f(e){return(await x({provider:`anthropic`,providerOptions:e,schema:Y}))?.containerUpload??!1}async function p(e){let t=await x({provider:`anthropic`,providerOptions:e,schema:Y});return{title:t?.title,context:t?.context}}for(let e=0;e<s.length;e++){let i=s[e],m=e===s.length-1,h=i.type;switch(h){case`system`:{let e=i.messages.map(({content:e,providerOptions:t})=>({type:`text`,text:e,cache_control:c.getCacheControl(t,{type:`system message`,canCache:!0})}));l==null?l=e:(u.push({role:`system`,content:e}),o.add(`mid-conversation-system-2026-04-07`));break}case`user`:{let e=[];for(let t of i.messages){let{role:i,content:a}=t;switch(i){case`user`:for(let n=0;n<a.length;n++){let i=a[n],s=n===a.length-1,l=c.getCacheControl(i.providerOptions,{type:`user message part`,canCache:!0})??(s?c.getCacheControl(t.providerOptions,{type:`user message`,canCache:!0}):void 0);switch(i.type){case`text`:e.push({type:`text`,text:i.text,cache_control:l});break;case`file`:switch(i.data.type){case`reference`:{let t=k({reference:i.data.reference,provider:`anthropic`});o.add(`files-api-2025-04-14`),await f(i.providerOptions)?e.push({type:`container_upload`,file_id:t}):y(i.mediaType)===`image`?e.push({type:`image`,source:{type:`file`,file_id:t},cache_control:l}):e.push({type:`document`,source:{type:`file`,file_id:t},cache_control:l});break}case`text`:{let t=await d(i.providerOptions),n=await p(i.providerOptions);e.push({type:`document`,source:{type:`text`,media_type:`text/plain`,data:i.data.text},title:n.title??i.filename,...n.context&&{context:n.context},...t&&{citations:{enabled:!0}},cache_control:l});break}case`url`:case`data`:{let t=y(i.mediaType);if(t===`image`)e.push({type:`image`,source:i.data.type===`url`?{type:`url`,url:i.data.url.toString()}:{type:`base64`,media_type:v({part:i}),data:V(i.data.data)},cache_control:l});else if(t===`application`&&(i.data.type===`url`?i.mediaType===`application/pdf`:v({part:i})===`application/pdf`)){o.add(`pdfs-2024-09-25`);let t=await d(i.providerOptions),n=await p(i.providerOptions);e.push({type:`document`,source:i.data.type===`url`?{type:`url`,url:i.data.url.toString()}:{type:`base64`,media_type:`application/pdf`,data:V(i.data.data)},title:n.title??i.filename,...n.context&&{context:n.context},...t&&{citations:{enabled:!0}},cache_control:l})}else if(i.mediaType===`text/plain`){let t=await d(i.providerOptions),n=await p(i.providerOptions);e.push({type:`document`,source:i.data.type===`url`?{type:`url`,url:i.data.url.toString()}:{type:`text`,media_type:`text/plain`,data:qe(i.data.data)},title:n.title??i.filename,...n.context&&{context:n.context},...t&&{citations:{enabled:!0}},cache_control:l})}else throw new r({functionality:`media type: ${i.mediaType}`});break}}break}}break;case`tool`:for(let r=0;r<a.length;r++){let i=a[r];if(i.type===`tool-approval-response`)continue;let s=i.output,l=`providerOptions`in s?s.providerOptions:s.type===`content`?s.value.find(e=>e.providerOptions!=null)?.providerOptions:void 0,u=r===a.length-1,d=c.getCacheControl(i.providerOptions,{type:`tool result part`,canCache:!0})??c.getCacheControl(l,{type:`tool result output`,canCache:!0})??(u?c.getCacheControl(t.providerOptions,{type:`tool result message`,canCache:!0}):void 0),f;switch(s.type){case`content`:f=s.value.map(e=>{switch(e.type){case`text`:return{type:`text`,text:e.text};case`file`:{let t=y(e.mediaType);if(e.data.type===`url`)return t===`image`?{type:`image`,source:{type:`url`,url:e.data.url.toString()}}:{type:`document`,source:{type:`url`,url:e.data.url.toString()}};if(e.data.type===`data`){if(t===`image`)return{type:`image`,source:{type:`base64`,media_type:v({part:e}),data:V(e.data.data)}};if(v({part:e})===`application/pdf`)return o.add(`pdfs-2024-09-25`),{type:`document`,source:{type:`base64`,media_type:`application/pdf`,data:V(e.data.data)}};n.push({type:`other`,message:`unsupported tool content part type: ${e.type} with media type: ${e.mediaType}`});return}n.push({type:`other`,message:`unsupported tool content part type: ${e.type} with data type: ${e.data.type}`});return}case`custom`:{let t=e.providerOptions?.anthropic;if(t?.type===`tool-reference`)return{type:`tool_reference`,tool_name:t.toolName};n.push({type:`other`,message:`unsupported custom tool content part`});return}default:n.push({type:`other`,message:`unsupported tool content part type: ${e.type}`});return}}).filter(b);break;case`text`:case`error-text`:f=s.value;break;case`execution-denied`:f=s.reason??`Tool call execution denied.`;break;default:f=JSON.stringify(s.value);break}e.push({type:`tool_result`,tool_use_id:i.toolCallId,content:f,is_error:s.type===`error-text`||s.type===`error-json`?!0:void 0,cache_control:d})}break;default:throw Error(`Unsupported role: ${i}`)}}u.push({role:`user`,content:e});break}case`assistant`:{let e=[],r=new Set;for(let o=0;o<i.messages.length;o++){let s=i.messages[o],l=o===i.messages.length-1,{content:u}=s;for(let i=0;i<u.length;i++){let o=u[i],d=i===u.length-1,f=c.getCacheControl(o.providerOptions,{type:`assistant message part`,canCache:!0})??(d?c.getCacheControl(s.providerOptions,{type:`assistant message`,canCache:!0}):void 0);switch(o.type){case`text`:o.providerOptions?.anthropic?.type===`compaction`?e.push({type:`compaction`,content:o.text,cache_control:f}):e.push({type:`text`,text:m&&l&&d?o.text.trim():o.text,cache_control:f});break;case`reasoning`:if(t){let t=await x({provider:`anthropic`,providerOptions:o.providerOptions,schema:oe});t==null?n.push({type:`other`,message:`unsupported reasoning metadata`}):t.signature==null?t.redactedData==null?n.push({type:`other`,message:`unsupported reasoning metadata`}):(c.getCacheControl(o.providerOptions,{type:`redacted thinking block`,canCache:!1}),e.push({type:`redacted_thinking`,data:t.redactedData})):(c.getCacheControl(o.providerOptions,{type:`thinking block`,canCache:!1}),e.push({type:`thinking`,thinking:o.text,signature:t.signature}))}else n.push({type:`other`,message:`sending reasoning content is disabled for this model`});break;case`tool-call`:{if(o.providerExecuted){let t=a.toProviderToolName(o.toolName);if(o.providerOptions?.anthropic?.type===`mcp-tool-use`){r.add(o.toolCallId);let t=o.providerOptions?.anthropic?.serverName;if(t==null||typeof t!=`string`){n.push({type:`other`,message:`mcp tool use server name is required and must be a string`});break}e.push({type:`mcp_tool_use`,id:o.toolCallId,name:o.toolName,input:o.input,server_name:t,cache_control:f})}else if(t===`code_execution`&&o.input!=null&&typeof o.input==`object`&&`type`in o.input&&typeof o.input.type==`string`&&(o.input.type===`bash_code_execution`||o.input.type===`text_editor_code_execution`))e.push({type:`server_tool_use`,id:o.toolCallId,name:o.input.type,input:o.input,cache_control:f});else if(t===`code_execution`&&o.input!=null&&typeof o.input==`object`&&`type`in o.input&&o.input.type===`programmatic-tool-call`){let{type:t,...n}=o.input;e.push({type:`server_tool_use`,id:o.toolCallId,name:`code_execution`,input:n,cache_control:f})}else t===`code_execution`||t===`web_fetch`||t===`web_search`||t===`tool_search_tool_regex`||t===`tool_search_tool_bm25`?e.push({type:`server_tool_use`,id:o.toolCallId,name:t,input:o.input,cache_control:f}):t===`advisor`?e.push({type:`server_tool_use`,id:o.toolCallId,name:`advisor`,input:{},cache_control:f}):n.push({type:`other`,message:`provider executed tool call for tool ${o.toolName} is not supported`});break}let t=o.providerOptions?.anthropic,i=t?.caller?(t.caller.type===`code_execution_20250825`||t.caller.type===`code_execution_20260120`)&&t.caller.toolId?{type:t.caller.type,tool_id:t.caller.toolId}:t.caller.type===`direct`?{type:`direct`}:void 0:void 0;e.push({type:`tool_use`,id:o.toolCallId,name:o.toolName,input:o.input,...i&&{caller:i},cache_control:f});break}case`tool-result`:{let t=a.toProviderToolName(o.toolName);if(r.has(o.toolCallId)){let t=o.output;if(t.type!==`json`&&t.type!==`error-json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}e.push({type:`mcp_tool_result`,tool_use_id:o.toolCallId,is_error:t.type===`error-json`,content:t.value,cache_control:f})}else if(t===`code_execution`){let t=o.output;if(t.type===`error-text`||t.type===`error-json`){let n={};try{typeof t.value==`string`?n=JSON.parse(t.value):typeof t.value==`object`&&t.value!==null&&(n=t.value)}catch{}n.type===`code_execution_tool_result_error`?e.push({type:`code_execution_tool_result`,tool_use_id:o.toolCallId,content:{type:`code_execution_tool_result_error`,error_code:n.errorCode??`unknown`},cache_control:f}):e.push({type:`bash_code_execution_tool_result`,tool_use_id:o.toolCallId,cache_control:f,content:{type:`bash_code_execution_tool_result_error`,error_code:n.errorCode??`unknown`}});break}if(t.type!==`json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}if(t.value==null||typeof t.value!=`object`||!(`type`in t.value)||typeof t.value.type!=`string`){n.push({type:`other`,message:`provider executed tool result output value is not a valid code execution result for tool ${o.toolName}`});break}if(t.value.type===`code_execution_result`){let n=await C({value:t.value,schema:Fe});e.push({type:`code_execution_tool_result`,tool_use_id:o.toolCallId,content:{type:n.type,stdout:n.stdout,stderr:n.stderr,return_code:n.return_code,content:n.content??[]},cache_control:f})}else if(t.value.type===`encrypted_code_execution_result`){let n=await C({value:t.value,schema:Ve});n.type===`encrypted_code_execution_result`&&e.push({type:`code_execution_tool_result`,tool_use_id:o.toolCallId,content:{type:n.type,encrypted_stdout:n.encrypted_stdout,stderr:n.stderr,return_code:n.return_code,content:n.content??[]},cache_control:f})}else{let n=await C({value:t.value,schema:Re});n.type===`code_execution_result`?e.push({type:`code_execution_tool_result`,tool_use_id:o.toolCallId,content:{type:n.type,stdout:n.stdout,stderr:n.stderr,return_code:n.return_code,content:n.content??[]},cache_control:f}):n.type===`bash_code_execution_result`||n.type===`bash_code_execution_tool_result_error`?e.push({type:`bash_code_execution_tool_result`,tool_use_id:o.toolCallId,cache_control:f,content:n}):e.push({type:`text_editor_code_execution_tool_result`,tool_use_id:o.toolCallId,cache_control:f,content:n})}break}if(t===`web_fetch`){let t=o.output;if(t.type===`error-json`){e.push({type:`web_fetch_tool_result`,tool_use_id:o.toolCallId,content:{type:`web_fetch_tool_result_error`,error_code:Je(t.value).errorCode??`unavailable`},cache_control:f});break}if(t.type!==`json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}let r=await C({value:t.value,schema:Ae});e.push({type:`web_fetch_tool_result`,tool_use_id:o.toolCallId,content:{type:`web_fetch_result`,url:r.url,retrieved_at:r.retrievedAt,content:{type:`document`,title:r.content.title,citations:r.content.citations,source:{type:r.content.source.type,media_type:r.content.source.mediaType,data:r.content.source.data}}},cache_control:f});break}if(t===`web_search`){let t=o.output;if(t.type===`error-json`){e.push({type:`web_search_tool_result`,tool_use_id:o.toolCallId,content:{type:`web_search_tool_result_error`,error_code:Je(t.value).errorCode??`unavailable`},cache_control:f});break}if(t.type!==`json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}let r=await C({value:t.value,schema:Se});e.push({type:`web_search_tool_result`,tool_use_id:o.toolCallId,content:r.map(e=>({url:e.url,title:e.title,page_age:e.pageAge,encrypted_content:e.encryptedContent,type:e.type})),cache_control:f});break}if(t===`tool_search_tool_regex`||t===`tool_search_tool_bm25`){let t=o.output;if(t.type!==`json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}let r=(await C({value:t.value,schema:We})).map(e=>({type:`tool_reference`,tool_name:e.toolName}));e.push({type:`tool_search_tool_result`,tool_use_id:o.toolCallId,content:{type:`tool_search_tool_search_result`,tool_references:r},cache_control:f});break}if(t===`advisor`){let t=o.output;if(t.type!==`json`&&t.type!==`error-json`){n.push({type:`other`,message:`provider executed tool result output type ${t.type} for tool ${o.toolName} is not supported`});break}let r=await C({value:t.value,schema:de});r.type===`advisor_result`?e.push({type:`advisor_tool_result`,tool_use_id:o.toolCallId,content:{type:`advisor_result`,text:r.text},cache_control:f}):r.type===`advisor_redacted_result`?e.push({type:`advisor_tool_result`,tool_use_id:o.toolCallId,content:{type:`advisor_redacted_result`,encrypted_content:r.encryptedContent},cache_control:f}):e.push({type:`advisor_tool_result`,tool_use_id:o.toolCallId,content:{type:`advisor_tool_result_error`,error_code:r.errorCode},cache_control:f});break}n.push({type:`other`,message:`provider executed tool result for tool ${o.toolName} is not supported`});break}}}}u.push({role:`assistant`,content:e});break}default:throw Error(`content type: ${h}`)}}return{prompt:{system:l,messages:u},betas:o}}function Xe(e){let t=[],n;for(let r of e){let{role:e}=r;switch(e){case`system`:n?.type!==`system`&&(n={type:`system`,messages:[]},t.push(n)),n.messages.push(r);break;case`assistant`:n?.type!==`assistant`&&(n={type:`assistant`,messages:[]},t.push(n)),n.messages.push(r);break;case`user`:n?.type!==`user`&&(n={type:`user`,messages:[]},t.push(n)),n.messages.push(r);break;case`tool`:n?.type!==`user`&&(n={type:`user`,messages:[]},t.push(n)),n.messages.push(r);break;default:throw Error(`Unsupported role: ${e}`)}}return t}function Z({finishReason:e,isJsonResponseFromTool:t}){switch(e){case`pause_turn`:case`end_turn`:case`stop_sequence`:return`stop`;case`refusal`:return`content-filter`;case`tool_use`:return t?`stop`:`tool-calls`;case`max_tokens`:case`model_context_window_exceeded`:return`length`;case`compaction`:return`other`;default:return`other`}}var Ze=new Set([`date-time`,`time`,`date`,`duration`,`email`,`hostname`,`uri`,`ipv4`,`ipv6`,`uuid`]),Qe=[`minimum`,`maximum`,`exclusiveMinimum`,`exclusiveMaximum`,`multipleOf`,`minLength`,`maxLength`,`pattern`,`minItems`,`maxItems`,`uniqueItems`,`minProperties`,`maxProperties`,`not`];function $e(e){return et(e)}function Q(e){return typeof e==`boolean`||!it(e)?e:et(e)}function et(e){let t={},n=e;if(e.$ref!=null)return{$ref:e.$ref};if(e.$schema!=null&&(t.$schema=e.$schema),e.$id!=null&&(t.$id=e.$id),e.title!=null&&(t.title=e.title),e.description!=null&&(t.description=e.description),e.default!==void 0&&(t.default=e.default),e.const!==void 0&&(t.const=e.const),e.enum!=null&&(t.enum=e.enum),e.type!=null&&(t.type=e.type),e.anyOf==null?e.oneOf!=null&&(t.anyOf=e.oneOf.map(Q)):t.anyOf=e.anyOf.map(Q),e.allOf!=null&&(t.allOf=e.allOf.map(Q)),e.definitions!=null&&(t.definitions=Object.fromEntries(Object.entries(e.definitions).map(([e,t])=>[e,Q(t)]))),n.$defs!=null){let e=t;e.$defs=Object.fromEntries(Object.entries(n.$defs).map(([e,t])=>[e,Q(t)]))}(e.type===`object`||e.properties!=null)&&(e.properties!=null&&(t.properties=Object.fromEntries(Object.entries(e.properties).map(([e,t])=>[e,Q(t)]))),t.additionalProperties=!1,e.required!=null&&(t.required=e.required)),e.items!=null&&(t.items=Array.isArray(e.items)?e.items.map(Q):Q(e.items)),typeof e.format==`string`&&Ze.has(e.format)&&(t.format=e.format);let r=tt(e);return r!=null&&(t.description=t.description==null?r:`${t.description}
|
|
2
|
+
${r}`),t}function tt(e){let t=Qe.flatMap(t=>{let n=e[t];return n==null||n===!1?[]:`${nt(t)}: ${rt(n)}`});return typeof e.format==`string`&&!Ze.has(e.format)&&t.push(`format: ${e.format}`),t.length===0?void 0:`${t.join(`; `)}.`}function nt(e){return e.replace(/[A-Z]/g,e=>` ${e.toLowerCase()}`)}function rt(e){return typeof e==`string`?e:JSON.stringify(e)}function it(e){return typeof e==`object`&&!!e&&!Array.isArray(e)}function at(e,t,n){if(e.type===`web_search_result_location`)return{type:`source`,sourceType:`url`,id:n(),url:e.url,title:e.title,providerMetadata:{anthropic:{citedText:e.cited_text,encryptedIndex:e.encrypted_index}}};if(e.type!==`page_location`&&e.type!==`char_location`)return;let r=t[e.document_index];if(r)return{type:`source`,sourceType:`document`,id:n(),mediaType:r.mediaType,title:e.document_title??r.title,filename:r.filename,providerMetadata:{anthropic:e.type===`page_location`?{citedText:e.cited_text,startPageNumber:e.start_page_number,endPageNumber:e.end_page_number}:{citedText:e.cited_text,startCharIndex:e.start_char_index,endCharIndex:e.end_char_index}}}}var ot=class t{constructor(e,t){this.specificationVersion=`v4`,this.modelId=e,this.config=t,this.generateId=t.generateId??P}static[M](e){return A({modelId:e.modelId,config:e.config})}static[ee](e){return new t(e.modelId,e.config)}supportsUrl(e){return e.protocol===`https:`}get provider(){return this.config.provider}get providerOptionsName(){let e=this.config.provider,t=e.indexOf(`.`);return t===-1?e:e.substring(0,t)}get supportedUrls(){var e;return(e=this.config).supportedUrls?.call(e)??{}}async getArgs({userSuppliedBetas:e,prompt:t,maxOutputTokens:n,temperature:r,topP:i,topK:a,frequencyPenalty:o,presencePenalty:s,stopSequences:c,responseFormat:l,seed:u,tools:d,toolChoice:f,reasoning:p,providerOptions:m,stream:h}){let g=[];o!=null&&g.push({type:`unsupported`,feature:`frequencyPenalty`}),s!=null&&g.push({type:`unsupported`,feature:`presencePenalty`}),u!=null&&g.push({type:`unsupported`,feature:`seed`}),r!=null&&r>1?(g.push({type:`unsupported`,feature:`temperature`,details:`${r} exceeds anthropic maximum of 1.0. clamped to 1.0`}),r=1):r!=null&&r<0&&(g.push({type:`unsupported`,feature:`temperature`,details:`${r} is below anthropic minimum of 0. clamped to 0`}),r=0),l?.type===`json`&&(l.schema??g.push({type:`unsupported`,feature:`responseFormat`,details:`JSON response format requires a schema. The response format is ignored.`}));let _=this.providerOptionsName,v=await x({provider:`anthropic`,providerOptions:m,schema:se}),y=_===`anthropic`?null:await x({provider:_,providerOptions:m,schema:se}),b=y!=null,S=Object.assign({},v??{},y??{}),{maxOutputTokens:C,supportsStructuredOutput:w,supportsAdaptiveThinking:T,rejectsSamplingParameters:E,supportsXhighEffort:D,isKnownModel:A}=st(this.modelId);E&&(r!=null&&(g.push({type:`unsupported`,feature:`temperature`,details:`temperature is not supported by ${this.modelId} and will be ignored`}),r=void 0),a!=null&&(g.push({type:`unsupported`,feature:`topK`,details:`topK is not supported by ${this.modelId} and will be ignored`}),a=void 0),i!=null&&(g.push({type:`unsupported`,feature:`topP`,details:`topP is not supported by ${this.modelId} and will be ignored`}),i=void 0));let ee=A||this.modelId.startsWith(`claude-`),j=(this.config.supportsNativeStructuredOutput??!0)&&w,M=(this.config.supportsStrictTools??!0)&&w,N=S?.structuredOutputMode??`auto`,P=N===`outputFormat`||N===`auto`&&j,F=l?.type===`json`&&l.schema!=null&&!P?{type:`function`,name:`json`,description:`Respond with a JSON object.`,inputSchema:l.schema}:void 0,I=S?.contextManagement,L=new X,R=te({tools:d,providerToolNames:{"anthropic.code_execution_20250522":`code_execution`,"anthropic.code_execution_20250825":`code_execution`,"anthropic.code_execution_20260120":`code_execution`,"anthropic.computer_20241022":`computer`,"anthropic.computer_20250124":`computer`,"anthropic.text_editor_20241022":`str_replace_editor`,"anthropic.text_editor_20250124":`str_replace_editor`,"anthropic.text_editor_20250429":`str_replace_based_edit_tool`,"anthropic.text_editor_20250728":`str_replace_based_edit_tool`,"anthropic.bash_20241022":`bash`,"anthropic.bash_20250124":`bash`,"anthropic.memory_20250818":`memory`,"anthropic.web_search_20250305":`web_search`,"anthropic.web_search_20260209":`web_search`,"anthropic.web_fetch_20250910":`web_fetch`,"anthropic.web_fetch_20260209":`web_fetch`,"anthropic.tool_search_regex_20251119":`tool_search_tool_regex`,"anthropic.tool_search_bm25_20251119":`tool_search_tool_bm25`,"anthropic.advisor_20260301":`advisor`}}),{prompt:z,betas:B}=await Ye({prompt:t,sendReasoning:S?.sendReasoning??!0,warnings:g,cacheControlValidator:L,toolNameMapping:R});if(O(p)&&S?.effort==null){let e=ct({reasoning:p,supportsAdaptiveThinking:T,supportsXhighEffort:D,maxOutputTokensForModel:C,warnings:g});e!=null&&(S.thinking??=e.thinking,e.effort!=null&&S.thinking?.type!==`disabled`&&(S.effort=e.effort))}let V=S?.thinking?.type,H=V===`enabled`||V===`adaptive`,U=V===`enabled`?S?.thinking?.budgetTokens:void 0,W=V===`adaptive`?S?.thinking?.display:void 0,G=n??C,K={model:this.modelId,max_tokens:G,temperature:r,top_k:a,top_p:i,stop_sequences:c,...H&&{thinking:{type:V,...U!=null&&{budget_tokens:U},...W!=null&&{display:W}}},...(S?.effort||S?.taskBudget||P&&l?.type===`json`&&l.schema!=null)&&{output_config:{...S?.effort&&{effort:S.effort},...S?.taskBudget&&{task_budget:{type:S.taskBudget.type,total:S.taskBudget.total,...S.taskBudget.remaining!=null&&{remaining:S.taskBudget.remaining}}},...P&&l?.type===`json`&&l.schema!=null&&{format:{type:`json_schema`,schema:$e(l.schema)}}}},...S?.speed&&{speed:S.speed},...S?.inferenceGeo&&{inference_geo:S.inferenceGeo},...S?.cacheControl&&{cache_control:S.cacheControl},...S?.metadata?.userId!=null&&{metadata:{user_id:S.metadata.userId}},...S?.mcpServers&&S.mcpServers.length>0&&{mcp_servers:S.mcpServers.map(e=>({type:e.type,name:e.name,url:e.url,authorization_token:e.authorizationToken,tool_configuration:e.toolConfiguration?{allowed_tools:e.toolConfiguration.allowedTools,enabled:e.toolConfiguration.enabled}:void 0}))},...S?.container&&{container:S.container.skills&&S.container.skills.length>0?{id:S.container.id,skills:S.container.skills.map(e=>({type:e.type,skill_id:e.type===`custom`?k({reference:e.providerReference,provider:`anthropic`}):e.skillId,version:e.version}))}:S.container.id},system:z.system,messages:z.messages,...I&&{context_management:{edits:I.edits.map(e=>{let t=e.type;switch(t){case`clear_tool_uses_20250919`:return{type:e.type,...e.trigger!==void 0&&{trigger:e.trigger},...e.keep!==void 0&&{keep:e.keep},...e.clearAtLeast!==void 0&&{clear_at_least:e.clearAtLeast},...e.clearToolInputs!==void 0&&{clear_tool_inputs:e.clearToolInputs},...e.excludeTools!==void 0&&{exclude_tools:e.excludeTools}};case`clear_thinking_20251015`:return{type:e.type,...e.keep!==void 0&&{keep:e.keep}};case`compact_20260112`:return{type:e.type,...e.trigger!==void 0&&{trigger:e.trigger},...e.pauseAfterCompaction!==void 0&&{pause_after_compaction:e.pauseAfterCompaction},...e.instructions!==void 0&&{instructions:e.instructions}};default:g.push({type:`other`,message:`Unknown context management strategy: ${t}`});return}}).filter(e=>e!==void 0)}}};H?(V===`enabled`&&U==null&&(g.push({type:`compatibility`,feature:`extended thinking`,details:`thinking budget is required when thinking is enabled. using default budget of 1024 tokens.`}),K.thinking={type:`enabled`,budget_tokens:1024},U=1024),K.temperature!=null&&(K.temperature=void 0,g.push({type:`unsupported`,feature:`temperature`,details:`temperature is not supported when thinking is enabled`})),a!=null&&(K.top_k=void 0,g.push({type:`unsupported`,feature:`topK`,details:`topK is not supported when thinking is enabled`})),i!=null&&(K.top_p=void 0,g.push({type:`unsupported`,feature:`topP`,details:`topP is not supported when thinking is enabled`})),K.max_tokens=G+(U??0)):ee&&i!=null&&r!=null&&(g.push({type:`unsupported`,feature:`topP`,details:`topP is not supported when temperature is set. topP is ignored.`}),K.top_p=void 0),A&&K.max_tokens>C&&(n!=null&&g.push({type:`unsupported`,feature:`maxOutputTokens`,details:`${K.max_tokens} (maxOutputTokens + thinkingBudget) is greater than ${this.modelId} ${C} max output tokens. The max output tokens have been limited to ${C}.`}),K.max_tokens=C),S?.mcpServers&&S.mcpServers.length>0&&B.add(`mcp-client-2025-04-04`),I&&(B.add(`context-management-2025-06-27`),I.edits.some(e=>e.type===`compact_20260112`)&&B.add(`compact-2026-01-12`)),S?.container&&S.container.skills&&S.container.skills.length>0&&(B.add(`code-execution-2025-08-25`),B.add(`skills-2025-10-02`),B.add(`files-api-2025-04-14`),d?.some(e=>e.type===`provider`&&(e.id===`anthropic.code_execution_20250825`||e.id===`anthropic.code_execution_20260120`))||g.push({type:`other`,message:`code execution tool is required when using skills`})),S?.taskBudget&&B.add(`task-budgets-2026-03-13`),S?.speed===`fast`&&B.add(`fast-mode-2026-02-01`);let q=h&&(S?.toolStreaming??!0),{tools:J,toolChoice:ne,toolWarnings:re,betas:ie}=await Ne(F==null?{tools:d??[],toolChoice:f,disableParallelToolUse:S?.disableParallelToolUse,cacheControlValidator:L,supportsStructuredOutput:j,supportsStrictTools:M,defaultEagerInputStreaming:q}:{tools:[...d??[],F],toolChoice:{type:`required`},disableParallelToolUse:!0,cacheControlValidator:L,supportsStructuredOutput:!1,supportsStrictTools:M,defaultEagerInputStreaming:q}),ae=L.getWarnings();return{args:{...K,tools:J,tool_choice:ne,stream:h===!0?!0:void 0},warnings:[...g,...re,...ae],betas:new Set([...B,...ie,...e,...S?.anthropicBeta??[]]),usesJsonResponseTool:F!=null,toolNameMapping:R,providerOptionsName:_,usedCustomProviderKey:b}}async getHeaders({betas:e,headers:t}){return W(this.config.headers?await q(this.config.headers):void 0,t,e.size>0?{"anthropic-beta":Array.from(e).join(`,`)}:{})}async getBetasFromHeaders(e){let t=(this.config.headers?await q(this.config.headers):void 0)?.[`anthropic-beta`]??``,n=e?.[`anthropic-beta`]??``;return new Set([...t.toLowerCase().split(`,`),...n.toLowerCase().split(`,`)].map(e=>e.trim()).filter(e=>e!==``))}buildRequestUrl(e){var t;return(t=this.config).buildRequestUrl?.call(t,this.config.baseURL,e)??`${this.config.baseURL}/messages`}transformRequestBody(e,t){var n;return(n=this.config).transformRequestBody?.call(n,e,t)??e}extractCitationDocuments(e){return e.filter(e=>e.role===`user`).flatMap(e=>e.content).filter(e=>e.type!==`file`||e.mediaType!==`application/pdf`&&e.mediaType!==`text/plain`?!1:e.providerOptions?.anthropic?.citations?.enabled??!1).map(e=>{let t=e;return{title:t.filename??`Untitled Document`,filename:t.filename,mediaType:t.mediaType}})}async doGenerate(e){let{args:t,warnings:n,betas:r,usesJsonResponseTool:i,toolNameMapping:a,providerOptionsName:o,usedCustomProviderKey:s}=await this.getArgs({...e,stream:!1,userSuppliedBetas:await this.getBetasFromHeaders(e.headers)}),c=[...this.extractCitationDocuments(e.prompt)],l=$(t.tools),{responseHeaders:u,value:d,rawValue:f}=await D({url:this.buildRequestUrl(!1),headers:await this.getHeaders({betas:r,headers:e.headers}),body:this.transformRequestBody(t,r),failedResponseHandler:J,successfulResponseHandler:I(ie),abortSignal:e.abortSignal,fetch:this.config.fetch}),p=[],m={},h={},g=!1;for(let e of d.content)switch(e.type){case`text`:if(!i&&(p.push({type:`text`,text:e.text}),e.citations))for(let t of e.citations){let e=at(t,c,this.generateId);e&&p.push(e)}break;case`thinking`:p.push({type:`reasoning`,text:e.thinking,providerMetadata:{anthropic:{signature:e.signature}}});break;case`redacted_thinking`:p.push({type:`reasoning`,text:``,providerMetadata:{anthropic:{redactedData:e.data}}});break;case`compaction`:p.push({type:`text`,text:e.content,providerMetadata:{anthropic:{type:`compaction`}}});break;case`tool_use`:if(i&&e.name===`json`)g=!0,p.push({type:`text`,text:JSON.stringify(e.input)});else{let t=e.caller,n=t?{type:t.type,toolId:`tool_id`in t?t.tool_id:void 0}:void 0;p.push({type:`tool-call`,toolCallId:e.id,toolName:e.name,input:JSON.stringify(e.input),...n&&{providerMetadata:{anthropic:{caller:n}}}})}break;case`server_tool_use`:if(e.name===`text_editor_code_execution`||e.name===`bash_code_execution`)p.push({type:`tool-call`,toolCallId:e.id,toolName:a.toCustomToolName(`code_execution`),input:JSON.stringify({type:e.name,...e.input}),providerExecuted:!0,...l?{dynamic:!0}:{}});else if(e.name===`web_search`||e.name===`code_execution`||e.name===`web_fetch`){let t=e.name===`code_execution`&&e.input!=null&&typeof e.input==`object`&&`code`in e.input&&!(`type`in e.input)?{type:`programmatic-tool-call`,...e.input}:e.input;p.push({type:`tool-call`,toolCallId:e.id,toolName:a.toCustomToolName(e.name),input:JSON.stringify(t),providerExecuted:!0,...l&&e.name===`code_execution`?{dynamic:!0}:{}})}else e.name===`tool_search_tool_regex`||e.name===`tool_search_tool_bm25`?(h[e.id]=e.name,p.push({type:`tool-call`,toolCallId:e.id,toolName:a.toCustomToolName(e.name),input:JSON.stringify(e.input),providerExecuted:!0})):e.name===`advisor`&&p.push({type:`tool-call`,toolCallId:e.id,toolName:a.toCustomToolName(`advisor`),input:JSON.stringify(e.input),providerExecuted:!0});break;case`mcp_tool_use`:m[e.id]={type:`tool-call`,toolCallId:e.id,toolName:e.name,input:JSON.stringify(e.input),providerExecuted:!0,dynamic:!0,providerMetadata:{anthropic:{type:`mcp-tool-use`,serverName:e.server_name}}},p.push(m[e.id]);break;case`mcp_tool_result`:p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:m[e.tool_use_id].toolName,isError:e.is_error,result:e.content,dynamic:!0,providerMetadata:m[e.tool_use_id].providerMetadata});break;case`web_fetch_tool_result`:e.content.type===`web_fetch_result`?(c.push({title:e.content.content.title??e.content.url,mediaType:e.content.content.source.media_type}),p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`web_fetch`),result:{type:`web_fetch_result`,url:e.content.url,retrievedAt:e.content.retrieved_at,content:{type:e.content.content.type,title:e.content.content.title,citations:e.content.content.citations,source:{type:e.content.content.source.type,mediaType:e.content.content.source.media_type,data:e.content.content.source.data}}}})):e.content.type===`web_fetch_tool_result_error`&&p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`web_fetch`),isError:!0,result:{type:`web_fetch_tool_result_error`,errorCode:e.content.error_code}});break;case`web_search_tool_result`:if(Array.isArray(e.content)){p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`web_search`),result:e.content.map(e=>({url:e.url,title:e.title,pageAge:e.page_age??null,encryptedContent:e.encrypted_content,type:e.type}))});for(let t of e.content)p.push({type:`source`,sourceType:`url`,id:this.generateId(),url:t.url,title:t.title,providerMetadata:{anthropic:{pageAge:t.page_age??null}}})}else p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`web_search`),isError:!0,result:{type:`web_search_tool_result_error`,errorCode:e.content.error_code}});break;case`code_execution_tool_result`:e.content.type===`code_execution_result`?p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`code_execution`),result:{type:e.content.type,stdout:e.content.stdout,stderr:e.content.stderr,return_code:e.content.return_code,content:e.content.content??[]}}):e.content.type===`encrypted_code_execution_result`?p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`code_execution`),result:{type:e.content.type,encrypted_stdout:e.content.encrypted_stdout,stderr:e.content.stderr,return_code:e.content.return_code,content:e.content.content??[]}}):e.content.type===`code_execution_tool_result_error`&&p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`code_execution`),isError:!0,result:{type:`code_execution_tool_result_error`,errorCode:e.content.error_code}});break;case`bash_code_execution_tool_result`:case`text_editor_code_execution_tool_result`:p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(`code_execution`),result:e.content});break;case`tool_search_tool_result`:{let t=h[e.tool_use_id];if(t==null){let e=a.toCustomToolName(`tool_search_tool_bm25`);a.toCustomToolName(`tool_search_tool_regex`),t=e===`tool_search_tool_bm25`?`tool_search_tool_regex`:`tool_search_tool_bm25`}e.content.type===`tool_search_tool_search_result`?p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(t),result:e.content.tool_references.map(e=>({type:e.type,toolName:e.tool_name}))}):p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:a.toCustomToolName(t),isError:!0,result:{type:`tool_search_tool_result_error`,errorCode:e.content.error_code}});break}case`advisor_tool_result`:{let t=a.toCustomToolName(`advisor`);e.content.type===`advisor_result`?p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,result:{type:`advisor_result`,text:e.content.text}}):e.content.type===`advisor_redacted_result`?p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,result:{type:`advisor_redacted_result`,encryptedContent:e.content.encrypted_content}}):p.push({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,isError:!0,result:{type:`advisor_tool_result_error`,errorCode:e.content.error_code}});break}}return{content:p,finishReason:{unified:Z({finishReason:d.stop_reason,isJsonResponseFromTool:g}),raw:d.stop_reason??void 0},usage:Pe({usage:d.usage}),request:{body:t},response:{id:d.id??void 0,modelId:d.model??void 0,headers:u,body:f},warnings:n,providerMetadata:(()=>{let e={usage:d.usage,stopSequence:d.stop_sequence??null,iterations:d.usage.iterations?d.usage.iterations.map(e=>e.type===`advisor_message`?{type:e.type,model:e.model,inputTokens:e.input_tokens,outputTokens:e.output_tokens,...e.cache_creation_input_tokens?{cacheCreationInputTokens:e.cache_creation_input_tokens}:{},...e.cache_read_input_tokens?{cacheReadInputTokens:e.cache_read_input_tokens}:{}}:{type:e.type,inputTokens:e.input_tokens,outputTokens:e.output_tokens,...e.cache_creation_input_tokens?{cacheCreationInputTokens:e.cache_creation_input_tokens}:{},...e.cache_read_input_tokens?{cacheReadInputTokens:e.cache_read_input_tokens}:{}}):null,container:d.container?{expiresAt:d.container.expires_at,id:d.container.id,skills:d.container.skills?.map(e=>({type:e.type,skillId:e.skill_id,version:e.version}))??null}:null,contextManagement:lt(d.context_management)??null},t={anthropic:e};return s&&o!==`anthropic`&&(t[o]=e),t})()}}async doStream(t){"use step";let{args:n,warnings:r,betas:i,usesJsonResponseTool:a,toolNameMapping:o,providerOptionsName:s,usedCustomProviderKey:c}=await this.getArgs({...t,stream:!0,userSuppliedBetas:await this.getBetasFromHeaders(t.headers)}),l=[...this.extractCitationDocuments(t.prompt)],u=$(n.tools),d=this.buildRequestUrl(!0),{responseHeaders:f,value:p}=await D({url:d,headers:await this.getHeaders({betas:i,headers:t.headers}),body:this.transformRequestBody(n,i),failedResponseHandler:J,successfulResponseHandler:G(ae),abortSignal:t.abortSignal,fetch:this.config.fetch}),m={unified:`other`,raw:void 0},h={input_tokens:0,output_tokens:0,cache_creation_input_tokens:0,cache_read_input_tokens:0,iterations:null},g={},_={},v={},y=null,b,x=null,S=null,C=!1,w,T=this.generateId,[E,O]=p.pipeThrough(new TransformStream({start(e){e.enqueue({type:`stream-start`,warnings:r})},transform(e,n){if(t.includeRawChunks&&n.enqueue({type:`raw`,rawValue:e.rawValue}),!e.success){n.enqueue({type:`error`,error:e.error});return}let r=e.value;switch(r.type){case`ping`:return;case`content_block_start`:{let e=r.content_block,t=e.type;switch(w=t,t){case`text`:if(a)return;g[r.index]={type:`text`},n.enqueue({type:`text-start`,id:String(r.index)});return;case`thinking`:g[r.index]={type:`reasoning`},n.enqueue({type:`reasoning-start`,id:String(r.index)});return;case`redacted_thinking`:g[r.index]={type:`reasoning`},n.enqueue({type:`reasoning-start`,id:String(r.index),providerMetadata:{anthropic:{redactedData:e.data}}});return;case`compaction`:g[r.index]={type:`text`},n.enqueue({type:`text-start`,id:String(r.index),providerMetadata:{anthropic:{type:`compaction`}}});return;case`tool_use`:if(a&&e.name===`json`)C=!0,g[r.index]={type:`text`},n.enqueue({type:`text-start`,id:String(r.index)});else{let t=e.caller,i=t?{type:t.type,toolId:`tool_id`in t?t.tool_id:void 0}:void 0,a=e.input&&Object.keys(e.input).length>0?JSON.stringify(e.input):``;g[r.index]={type:`tool-call`,toolCallId:e.id,toolName:e.name,input:a,firstDelta:a.length===0,...i&&{caller:i}},n.enqueue({type:`tool-input-start`,id:e.id,toolName:e.name})}return;case`server_tool_use`:if([`web_fetch`,`web_search`,`code_execution`,`text_editor_code_execution`,`bash_code_execution`].includes(e.name)){let t=e.name===`text_editor_code_execution`||e.name===`bash_code_execution`?`code_execution`:e.name,i=o.toCustomToolName(t),a=e.input!=null&&typeof e.input==`object`&&Object.keys(e.input).length>0?JSON.stringify(e.input):``;g[r.index]={type:`tool-call`,toolCallId:e.id,toolName:i,input:a,providerExecuted:!0,...u&&t===`code_execution`?{dynamic:!0}:{},firstDelta:!0,providerToolName:t},n.enqueue({type:`tool-input-start`,id:e.id,toolName:i,providerExecuted:!0,...u&&t===`code_execution`?{dynamic:!0}:{}})}else if(e.name===`tool_search_tool_regex`||e.name===`tool_search_tool_bm25`){v[e.id]=e.name;let t=o.toCustomToolName(e.name);g[r.index]={type:`tool-call`,toolCallId:e.id,toolName:t,input:``,providerExecuted:!0,firstDelta:!0,providerToolName:e.name},n.enqueue({type:`tool-input-start`,id:e.id,toolName:t,providerExecuted:!0})}else if(e.name===`advisor`){let t=o.toCustomToolName(`advisor`);g[r.index]={type:`tool-call`,toolCallId:e.id,toolName:t,input:`{}`,providerExecuted:!0,firstDelta:!0,providerToolName:e.name},n.enqueue({type:`tool-input-start`,id:e.id,toolName:t,providerExecuted:!0})}return;case`web_fetch_tool_result`:e.content.type===`web_fetch_result`?(l.push({title:e.content.content.title??e.content.url,mediaType:e.content.content.source.media_type}),n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`web_fetch`),result:{type:`web_fetch_result`,url:e.content.url,retrievedAt:e.content.retrieved_at,content:{type:e.content.content.type,title:e.content.content.title,citations:e.content.content.citations,source:{type:e.content.content.source.type,mediaType:e.content.content.source.media_type,data:e.content.content.source.data}}}})):e.content.type===`web_fetch_tool_result_error`&&n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`web_fetch`),isError:!0,result:{type:`web_fetch_tool_result_error`,errorCode:e.content.error_code}});return;case`web_search_tool_result`:if(Array.isArray(e.content)){n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`web_search`),result:e.content.map(e=>({url:e.url,title:e.title,pageAge:e.page_age??null,encryptedContent:e.encrypted_content,type:e.type}))});for(let t of e.content)n.enqueue({type:`source`,sourceType:`url`,id:T(),url:t.url,title:t.title,providerMetadata:{anthropic:{pageAge:t.page_age??null}}})}else n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`web_search`),isError:!0,result:{type:`web_search_tool_result_error`,errorCode:e.content.error_code}});return;case`code_execution_tool_result`:e.content.type===`code_execution_result`?n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`code_execution`),result:{type:e.content.type,stdout:e.content.stdout,stderr:e.content.stderr,return_code:e.content.return_code,content:e.content.content??[]}}):e.content.type===`encrypted_code_execution_result`?n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`code_execution`),result:{type:e.content.type,encrypted_stdout:e.content.encrypted_stdout,stderr:e.content.stderr,return_code:e.content.return_code,content:e.content.content??[]}}):e.content.type===`code_execution_tool_result_error`&&n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`code_execution`),isError:!0,result:{type:`code_execution_tool_result_error`,errorCode:e.content.error_code}});return;case`bash_code_execution_tool_result`:case`text_editor_code_execution_tool_result`:n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(`code_execution`),result:e.content});return;case`tool_search_tool_result`:{let t=v[e.tool_use_id];if(t==null){let e=o.toCustomToolName(`tool_search_tool_bm25`);o.toCustomToolName(`tool_search_tool_regex`),t=e===`tool_search_tool_bm25`?`tool_search_tool_regex`:`tool_search_tool_bm25`}e.content.type===`tool_search_tool_search_result`?n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(t),result:e.content.tool_references.map(e=>({type:e.type,toolName:e.tool_name}))}):n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:o.toCustomToolName(t),isError:!0,result:{type:`tool_search_tool_result_error`,errorCode:e.content.error_code}});return}case`advisor_tool_result`:{let t=o.toCustomToolName(`advisor`);e.content.type===`advisor_result`?n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,result:{type:`advisor_result`,text:e.content.text}}):e.content.type===`advisor_redacted_result`?n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,result:{type:`advisor_redacted_result`,encryptedContent:e.content.encrypted_content}}):n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:t,isError:!0,result:{type:`advisor_tool_result_error`,errorCode:e.content.error_code}});return}case`mcp_tool_use`:_[e.id]={type:`tool-call`,toolCallId:e.id,toolName:e.name,input:JSON.stringify(e.input),providerExecuted:!0,dynamic:!0,providerMetadata:{anthropic:{type:`mcp-tool-use`,serverName:e.server_name}}},n.enqueue(_[e.id]);return;case`mcp_tool_result`:n.enqueue({type:`tool-result`,toolCallId:e.tool_use_id,toolName:_[e.tool_use_id].toolName,isError:e.is_error,result:e.content,dynamic:!0,providerMetadata:_[e.tool_use_id].providerMetadata});return;default:throw Error(`Unsupported content block type: ${t}`)}}case`content_block_stop`:if(g[r.index]!=null){let e=g[r.index];switch(e.type){case`text`:n.enqueue({type:`text-end`,id:String(r.index)});break;case`reasoning`:n.enqueue({type:`reasoning-end`,id:String(r.index)});break;case`tool-call`:if(!(a&&e.toolName===`json`)){n.enqueue({type:`tool-input-end`,id:e.toolCallId});let t=e.input===``?`{}`:e.input;if(e.providerToolName===`code_execution`)try{let e=JSON.parse(t);typeof e==`object`&&e&&`code`in e&&!(`type`in e)&&(t=JSON.stringify({type:`programmatic-tool-call`,...e}))}catch{}n.enqueue({type:`tool-call`,toolCallId:e.toolCallId,toolName:e.toolName,input:t,providerExecuted:e.providerExecuted,...u&&e.providerToolName===`code_execution`?{dynamic:!0}:{},...e.caller&&{providerMetadata:{anthropic:{caller:e.caller}}}})}break}delete g[r.index]}w=void 0;return;case`content_block_delta`:{let e=r.delta.type;switch(e){case`text_delta`:if(a)return;n.enqueue({type:`text-delta`,id:String(r.index),delta:r.delta.text});return;case`thinking_delta`:n.enqueue({type:`reasoning-delta`,id:String(r.index),delta:r.delta.thinking});return;case`signature_delta`:w===`thinking`&&n.enqueue({type:`reasoning-delta`,id:String(r.index),delta:``,providerMetadata:{anthropic:{signature:r.delta.signature}}});return;case`compaction_delta`:r.delta.content!=null&&n.enqueue({type:`text-delta`,id:String(r.index),delta:r.delta.content});return;case`input_json_delta`:{let e=g[r.index],t=r.delta.partial_json;if(t.length===0)return;if(C){if(e?.type!==`text`)return;n.enqueue({type:`text-delta`,id:String(r.index),delta:t})}else{if(e?.type!==`tool-call`)return;e.firstDelta&&e.providerToolName===`code_execution`&&(t=`{"type": "programmatic-tool-call",${t.substring(1)}`),n.enqueue({type:`tool-input-delta`,id:e.toolCallId,delta:t}),e.input+=t,e.firstDelta=!1}return}case`citations_delta`:{let e=r.delta.citation,t=at(e,l,T);t&&n.enqueue(t);return}default:throw Error(`Unsupported delta type: ${e}`)}}case`message_start`:if(h.input_tokens=r.message.usage.input_tokens,h.cache_read_input_tokens=r.message.usage.cache_read_input_tokens??0,h.cache_creation_input_tokens=r.message.usage.cache_creation_input_tokens??0,b={...r.message.usage},r.message.container!=null&&(S={expiresAt:r.message.container.expires_at,id:r.message.container.id,skills:null}),r.message.stop_reason!=null&&(m={unified:Z({finishReason:r.message.stop_reason,isJsonResponseFromTool:C}),raw:r.message.stop_reason}),n.enqueue({type:`response-metadata`,id:r.message.id??void 0,modelId:r.message.model??void 0}),r.message.content!=null)for(let e=0;e<r.message.content.length;e++){let t=r.message.content[e];if(t.type===`tool_use`){let e=t.caller,r=e?{type:e.type,toolId:`tool_id`in e?e.tool_id:void 0}:void 0;n.enqueue({type:`tool-input-start`,id:t.id,toolName:t.name});let i=JSON.stringify(t.input??{});n.enqueue({type:`tool-input-delta`,id:t.id,delta:i}),n.enqueue({type:`tool-input-end`,id:t.id}),n.enqueue({type:`tool-call`,toolCallId:t.id,toolName:t.name,input:i,...r&&{providerMetadata:{anthropic:{caller:r}}}})}}return;case`message_delta`:r.usage.input_tokens!=null&&h.input_tokens!==r.usage.input_tokens&&(h.input_tokens=r.usage.input_tokens),h.output_tokens=r.usage.output_tokens,r.usage.cache_read_input_tokens!=null&&(h.cache_read_input_tokens=r.usage.cache_read_input_tokens),r.usage.cache_creation_input_tokens!=null&&(h.cache_creation_input_tokens=r.usage.cache_creation_input_tokens),r.usage.iterations!=null&&(h.iterations=r.usage.iterations),m={unified:Z({finishReason:r.delta.stop_reason,isJsonResponseFromTool:C}),raw:r.delta.stop_reason??void 0},x=r.delta.stop_sequence??null,S=r.delta.container==null?null:{expiresAt:r.delta.container.expires_at,id:r.delta.container.id,skills:r.delta.container.skills?.map(e=>({type:e.type,skillId:e.skill_id,version:e.version}))??null},r.context_management&&(y=lt(r.context_management)),b={...b,...r.usage};return;case`message_stop`:{let e={usage:b??null,stopSequence:x,iterations:h.iterations?h.iterations.map(e=>e.type===`advisor_message`?{type:e.type,model:e.model,inputTokens:e.input_tokens,outputTokens:e.output_tokens,...e.cache_creation_input_tokens?{cacheCreationInputTokens:e.cache_creation_input_tokens}:{},...e.cache_read_input_tokens?{cacheReadInputTokens:e.cache_read_input_tokens}:{}}:{type:e.type,inputTokens:e.input_tokens,outputTokens:e.output_tokens,...e.cache_creation_input_tokens?{cacheCreationInputTokens:e.cache_creation_input_tokens}:{},...e.cache_read_input_tokens?{cacheReadInputTokens:e.cache_read_input_tokens}:{}}):null,container:S,contextManagement:y},t={anthropic:e};c&&s!==`anthropic`&&(t[s]=e),n.enqueue({type:`finish`,finishReason:m,usage:Pe({usage:h,rawUsage:b}),providerMetadata:t});return}case`error`:n.enqueue({type:`error`,error:r.error});return;default:throw Error(`Unsupported chunk type: ${r}`)}}})).tee(),k=E.getReader();try{await k.read();let t=await k.read();if(t.value?.type===`raw`&&(t=await k.read()),t.value?.type===`error`){let r=t.value.error;throw new e({message:r.message,url:d,requestBodyValues:n,statusCode:r.type===`overloaded_error`?529:500,responseHeaders:f,responseBody:JSON.stringify(r),isRetryable:r.type===`overloaded_error`})}}finally{k.cancel().catch(()=>{}),k.releaseLock()}return{stream:O,request:{body:n},response:{headers:f}}}};function st(e){return e.includes(`claude-opus-4-8`)||e.includes(`claude-opus-4-7`)?{maxOutputTokens:128e3,supportsStructuredOutput:!0,supportsAdaptiveThinking:!0,rejectsSamplingParameters:!0,supportsXhighEffort:!0,isKnownModel:!0}:e.includes(`claude-sonnet-4-6`)||e.includes(`claude-opus-4-6`)?{maxOutputTokens:128e3,supportsStructuredOutput:!0,supportsAdaptiveThinking:!0,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:e.includes(`claude-sonnet-4-5`)||e.includes(`claude-opus-4-5`)||e.includes(`claude-haiku-4-5`)?{maxOutputTokens:64e3,supportsStructuredOutput:!0,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:e.includes(`claude-opus-4-1`)?{maxOutputTokens:32e3,supportsStructuredOutput:!0,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:e.includes(`claude-sonnet-4-`)?{maxOutputTokens:64e3,supportsStructuredOutput:!1,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:e.includes(`claude-opus-4-`)?{maxOutputTokens:32e3,supportsStructuredOutput:!1,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:e.includes(`claude-3-haiku`)?{maxOutputTokens:4096,supportsStructuredOutput:!1,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!0}:{maxOutputTokens:4096,supportsStructuredOutput:!1,supportsAdaptiveThinking:!1,rejectsSamplingParameters:!1,supportsXhighEffort:!1,isKnownModel:!1}}function $(e){if(!e)return!1;let t=!1,n=!1;for(let r of e){if(`type`in r&&(r.type===`web_fetch_20260209`||r.type===`web_search_20260209`)){t=!0;continue}if(r.name===`code_execution`){n=!0;break}}return t&&!n}function ct({reasoning:e,supportsAdaptiveThinking:t,supportsXhighEffort:n,maxOutputTokensForModel:r,warnings:i}){if(!O(e))return;if(e===`none`)return{thinking:{type:`disabled`}};if(t)return{thinking:{type:`adaptive`},effort:E({reasoning:e,effortMap:{minimal:`low`,low:`low`,medium:`medium`,high:`high`,xhigh:n?`xhigh`:`max`},warnings:i})};let a=T({reasoning:e,maxOutputTokens:r,maxReasoningBudget:r,warnings:i});if(a!=null)return{thinking:{type:`enabled`,budgetTokens:a}}}function lt(e){return e?{appliedEdits:e.applied_edits.map(e=>{switch(e.type){case`clear_tool_uses_20250919`:return{type:e.type,clearedToolUses:e.cleared_tool_uses,clearedInputTokens:e.cleared_input_tokens};case`clear_thinking_20251015`:return{type:e.type,clearedThinkingTurns:e.cleared_thinking_turns,clearedInputTokens:e.cleared_input_tokens};case`compact_20260112`:return{type:e.type}}}).filter(e=>e!==void 0)}:null}var ut=H({id:`anthropic.bash_20241022`,inputSchema:B(()=>j(u({command:l(),restart:i().optional()})))});function dt(e={}){let{execute:t,...n}=e;return ut(t===void 0?{...n,execute:async({command:e},{abortSignal:t,experimental_sandbox:n})=>{if(!n)throw Error(`Sandbox is not available`);return await n.run({command:e,abortSignal:t})}}:{...n,...t===null?{}:{execute:t}})}var ft=H({id:`anthropic.bash_20250124`,inputSchema:B(()=>j(u({command:l(),restart:i().optional()})))});function pt(e={}){let{execute:t,...n}=e;return ft(t===void 0?{...n,execute:async({command:e},{abortSignal:t,experimental_sandbox:n})=>{if(!n)throw Error(`Sandbox is not available`);return await n.run({command:e,abortSignal:t})}}:{...n,...t===null?{}:{execute:t}})}var mt=H({id:`anthropic.computer_20241022`,inputSchema:B(()=>j(u({action:g([`key`,`type`,`mouse_move`,`left_click`,`left_click_drag`,`right_click`,`middle_click`,`double_click`,`screenshot`,`cursor_position`]),coordinate:o(h().int()).optional(),text:l().optional()})))}),ht=H({id:`anthropic.computer_20250124`,inputSchema:B(()=>j(u({action:g([`key`,`hold_key`,`type`,`cursor_position`,`mouse_move`,`left_mouse_down`,`left_mouse_up`,`left_click`,`left_click_drag`,`right_click`,`middle_click`,`double_click`,`triple_click`,`scroll`,`wait`,`screenshot`]),coordinate:s([h().int(),h().int()]).optional(),duration:h().optional(),scroll_amount:h().optional(),scroll_direction:g([`up`,`down`,`left`,`right`]).optional(),start_coordinate:s([h().int(),h().int()]).optional(),text:l().optional()})))}),gt=H({id:`anthropic.computer_20251124`,inputSchema:B(()=>j(u({action:g([`key`,`hold_key`,`type`,`cursor_position`,`mouse_move`,`left_mouse_down`,`left_mouse_up`,`left_click`,`left_click_drag`,`right_click`,`middle_click`,`double_click`,`triple_click`,`scroll`,`wait`,`screenshot`,`zoom`]),coordinate:s([h().int(),h().int()]).optional(),duration:h().optional(),region:s([h().int(),h().int(),h().int(),h().int()]).optional(),scroll_amount:h().optional(),scroll_direction:g([`up`,`down`,`left`,`right`]).optional(),start_coordinate:s([h().int(),h().int()]).optional(),text:l().optional()})))}),_t=H({id:`anthropic.memory_20250818`,inputSchema:B(()=>j(a(`command`,[u({command:p(`view`),path:l(),view_range:s([h(),h()]).optional()}),u({command:p(`create`),path:l(),file_text:l()}),u({command:p(`str_replace`),path:l(),old_str:l(),new_str:l()}),u({command:p(`insert`),path:l(),insert_line:h(),insert_text:l()}),u({command:p(`delete`),path:l()}),u({command:p(`rename`),old_path:l(),new_path:l()})])))}),vt=H({id:`anthropic.text_editor_20241022`,inputSchema:B(()=>j(u({command:g([`view`,`create`,`str_replace`,`insert`,`undo_edit`]),path:l(),file_text:l().optional(),insert_line:h().int().optional(),new_str:l().optional(),insert_text:l().optional(),old_str:l().optional(),view_range:o(h().int()).optional()})))}),yt=H({id:`anthropic.text_editor_20250124`,inputSchema:B(()=>j(u({command:g([`view`,`create`,`str_replace`,`insert`,`undo_edit`]),path:l(),file_text:l().optional(),insert_line:h().int().optional(),new_str:l().optional(),insert_text:l().optional(),old_str:l().optional(),view_range:o(h().int()).optional()})))}),bt=H({id:`anthropic.text_editor_20250429`,inputSchema:B(()=>j(u({command:g([`view`,`create`,`str_replace`,`insert`]),path:l(),file_text:l().optional(),insert_line:h().int().optional(),new_str:l().optional(),insert_text:l().optional(),old_str:l().optional(),view_range:o(h().int()).optional()})))}),xt=B(()=>j(o(u({type:p(`tool_reference`),toolName:l()})))),St=L({id:`anthropic.tool_search_bm25_20251119`,inputSchema:B(()=>j(u({query:l(),limit:h().optional()}))),outputSchema:xt,supportsDeferredResults:!0}),Ct={advisor_20260301:pe,bash_20241022:dt,bash_20250124:pt,codeExecution_20250522:Le,codeExecution_20250825:Be,codeExecution_20260120:Ue,computer_20241022:mt,computer_20250124:ht,computer_20251124:gt,memory_20250818:_t,textEditor_20241022:vt,textEditor_20250124:yt,textEditor_20250429:bt,textEditor_20250728:ge,webFetch_20250910:Me,webFetch_20260209:Oe,webSearch_20250305:we,webSearch_20260209:be,toolSearchRegex_20251119:Ke,toolSearchBm25_20251119:(e={})=>St(e)},wt=B(()=>j(u({id:l(),display_title:l().nullish(),name:l().nullish(),description:l().nullish(),latest_version:l().nullish(),source:l(),created_at:l(),updated_at:l()})));B(()=>j(u({data:o(u({version:l()}))})));var Tt=B(()=>j(u({type:l(),skill_id:l(),name:l().nullish(),description:l().nullish()}))),Et=class{constructor(e){this.config=e,this.specificationVersion=`v4`}get provider(){return this.config.provider}async getHeaders(){return W(await q(this.config.headers),{"anthropic-beta":`skills-2025-10-02`})}async fetchVersionMetadata({skillId:e,version:t,headers:n}){let{value:r}=await K({url:`${this.config.baseURL}/skills/${e}/versions/${t}`,headers:n,failedResponseHandler:J,successfulResponseHandler:I(Tt),fetch:this.config.fetch});return{...r.name==null?{}:{name:r.name},...r.description==null?{}:{description:r.description}}}async uploadSkill(e){let t=[],n=new FormData;e.displayTitle!=null&&n.append(`display_title`,e.displayTitle);for(let t of e.files){let e=N(t.data);n.append(`files[]`,new Blob([e]),t.path)}let r=await this.getHeaders(),{value:i}=await w({url:`${this.config.baseURL}/skills`,headers:r,formData:n,failedResponseHandler:J,successfulResponseHandler:I(wt),fetch:this.config.fetch}),a=i.latest_version==null?{}:await this.fetchVersionMetadata({skillId:i.id,version:i.latest_version,headers:r}),o=a.name??i.name,s=a.description??i.description;return{providerReference:{anthropic:i.id},...i.display_title==null?{}:{displayTitle:i.display_title},...o==null?{}:{name:o},...s==null?{}:{description:s},...i.latest_version==null?{}:{latestVersion:i.latest_version},providerMetadata:{anthropic:{...i.source==null?{}:{source:i.source},...i.created_at==null?{}:{createdAt:i.created_at},...i.updated_at==null?{}:{updatedAt:i.updated_at}}},warnings:t}}},Dt=`4.0.0-canary.61`;function Ot(e={}){let r=S(z({settingValue:e.baseURL,environmentVariableName:`ANTHROPIC_BASE_URL`}))??`https://api.anthropic.com/v1`,i=e.name??`anthropic.messages`;if(e.apiKey&&e.authToken)throw new t({argument:`apiKey/authToken`,message:`Both apiKey and authToken were provided. Please use only one authentication method.`});let a=()=>U({"anthropic-version":`2023-06-01`,...e.authToken?{Authorization:`Bearer ${e.authToken}`}:{"x-api-key":_({apiKey:e.apiKey,environmentVariableName:`ANTHROPIC_API_KEY`,description:`Anthropic`})},...e.headers},`ai-sdk/anthropic/${Dt}`),o=t=>new ot(t,{provider:i,baseURL:r,headers:a,fetch:e.fetch,generateId:e.generateId??P,supportedUrls:()=>({"image/*":[/^https?:\/\/.*$/],"application/pdf":[/^https?:\/\/.*$/]})}),s=()=>new Et({provider:`${i.replace(`.messages`,``)}.skills`,baseURL:r,headers:a,fetch:e.fetch}),c=function(e){if(new.target)throw Error(`The Anthropic model function cannot be called with the new keyword.`);return o(e)};return c.specificationVersion=`v4`,c.languageModel=o,c.chat=o,c.messages=o,c.embeddingModel=e=>{throw new n({modelId:e,modelType:`embeddingModel`})},c.textEmbeddingModel=c.embeddingModel,c.imageModel=e=>{throw new n({modelId:e,modelType:`imageModel`})},c.files=()=>new re({provider:i,baseURL:r,headers:a,fetch:e.fetch}),c.skills=s,c.tools=Ct,c}var kt=Ot();function At({steps:e}){for(let t=e.length-1;t>=0;t--){let n=e[t].providerMetadata?.anthropic?.container?.id;if(n)return{providerOptions:{anthropic:{container:{id:n}}}}}}export{Dt as VERSION,kt as anthropic,Ot as createAnthropic,At as forwardAnthropicContainerIdFromLastStep};
|
|
@@ -11,7 +11,7 @@ declare const googleErrorDataSchema: _ai_sdk_provider_utils.LazySchema<{
|
|
|
11
11
|
}>;
|
|
12
12
|
type GoogleErrorData = InferSchema<typeof googleErrorDataSchema>;
|
|
13
13
|
|
|
14
|
-
type GoogleModelId = 'gemini-2.0-flash' | 'gemini-2.0-flash-001' | 'gemini-2.0-flash-lite' | 'gemini-2.0-flash-lite-001' | 'gemini-2.5-pro' | 'gemini-2.5-flash' | 'gemini-2.5-flash-image' | 'gemini-2.5-flash-lite' | 'gemini-2.5-flash-preview-tts' | 'gemini-2.5-pro-preview-tts' | 'gemini-2.5-flash-native-audio-latest' | 'gemini-2.5-flash-native-audio-preview-09-2025' | 'gemini-2.5-flash-native-audio-preview-12-2025' | 'gemini-2.5-computer-use-preview-10-2025' | 'gemini-3-pro-preview' | 'gemini-3-pro-image-preview' | 'gemini-3-flash-preview' | 'gemini-3.1-pro-preview' | 'gemini-3.1-pro-preview-customtools' | 'gemini-3.1-flash-image-preview' | 'gemini-3.1-flash-lite-preview' | 'gemini-3.1-flash-tts-preview' | 'gemini-3.5-flash' | 'gemini-pro-latest' | 'gemini-flash-latest' | 'gemini-flash-lite-latest' | 'deep-research-pro-preview-12-2025' | 'nano-banana-pro-preview' | 'aqa' | 'gemini-robotics-er-1.5-preview' | 'gemma-3-1b-it' | 'gemma-3-4b-it' | 'gemma-3n-e4b-it' | 'gemma-3n-e2b-it' | 'gemma-3-12b-it' | 'gemma-3-27b-it' | (string & {});
|
|
14
|
+
type GoogleModelId = 'gemini-2.0-flash' | 'gemini-2.0-flash-001' | 'gemini-2.0-flash-lite' | 'gemini-2.0-flash-lite-001' | 'gemini-2.5-pro' | 'gemini-2.5-flash' | 'gemini-2.5-flash-image' | 'gemini-2.5-flash-lite' | 'gemini-2.5-flash-preview-tts' | 'gemini-2.5-pro-preview-tts' | 'gemini-2.5-flash-native-audio-latest' | 'gemini-2.5-flash-native-audio-preview-09-2025' | 'gemini-2.5-flash-native-audio-preview-12-2025' | 'gemini-2.5-computer-use-preview-10-2025' | 'gemini-3-pro-preview' | 'gemini-3-pro-image-preview' | 'gemini-3-flash-preview' | 'gemini-3.1-pro-preview' | 'gemini-3.1-pro-preview-customtools' | 'gemini-3.1-flash-image-preview' | 'gemini-3.1-flash-lite-preview' | 'gemini-3.1-flash-tts-preview' | 'gemini-3.5-flash' | 'gemini-pro-latest' | 'gemini-flash-latest' | 'gemini-flash-lite-latest' | 'deep-research-pro-preview-12-2025' | 'deep-research-max-preview-04-2026' | 'deep-research-preview-04-2026' | 'nano-banana-pro-preview' | 'aqa' | 'gemini-robotics-er-1.5-preview' | 'gemma-3-1b-it' | 'gemma-3-4b-it' | 'gemma-3n-e4b-it' | 'gemma-3n-e2b-it' | 'gemma-3-12b-it' | 'gemma-3-27b-it' | (string & {});
|
|
15
15
|
declare const googleLanguageModelOptions: _ai_sdk_provider_utils.LazySchema<{
|
|
16
16
|
responseModalities?: ("TEXT" | "IMAGE")[] | undefined;
|
|
17
17
|
thinkingConfig?: {
|
|
@@ -231,7 +231,7 @@ declare const googleImageModelOptionsSchema: _ai_sdk_provider_utils.LazySchema<{
|
|
|
231
231
|
}>;
|
|
232
232
|
type GoogleImageModelOptions = InferSchema<typeof googleImageModelOptionsSchema>;
|
|
233
233
|
|
|
234
|
-
type GoogleEmbeddingModelId = 'gemini-embedding-001' | 'gemini-embedding-2-preview' | (string & {});
|
|
234
|
+
type GoogleEmbeddingModelId = 'gemini-embedding-001' | 'gemini-embedding-2' | 'gemini-embedding-2-preview' | (string & {});
|
|
235
235
|
declare const googleEmbeddingModelOptions: _ai_sdk_provider_utils.LazySchema<{
|
|
236
236
|
outputDimensionality?: number | undefined;
|
|
237
237
|
taskType?: "SEMANTIC_SIMILARITY" | "CLASSIFICATION" | "CLUSTERING" | "RETRIEVAL_DOCUMENT" | "RETRIEVAL_QUERY" | "QUESTION_ANSWERING" | "FACT_VERIFICATION" | "CODE_RETRIEVAL_QUERY" | undefined;
|