@adaline/anthropic 1.13.10 → 1.13.11
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/dist/index.d.mts +229 -1
- package/dist/index.d.ts +229 -1
- package/dist/index.js +179 -171
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1487,6 +1487,234 @@ declare class ClaudeOpus4_7 extends BaseChatModel {
|
|
|
1487
1487
|
constructor(options: ClaudeOpus4_7OptionsType);
|
|
1488
1488
|
}
|
|
1489
1489
|
|
|
1490
|
+
declare const ClaudeOpus4_8Literal = "claude-opus-4-8";
|
|
1491
|
+
declare const ClaudeOpus4_8Schema: {
|
|
1492
|
+
description: string;
|
|
1493
|
+
name: string;
|
|
1494
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
1495
|
+
modalities: ["text" | "image" | "tool-call" | "tool-response" | "reasoning", ...("text" | "image" | "tool-call" | "tool-response" | "reasoning")[]];
|
|
1496
|
+
maxInputTokens: number;
|
|
1497
|
+
maxOutputTokens: number;
|
|
1498
|
+
config: {
|
|
1499
|
+
def: Record<string, {
|
|
1500
|
+
type: "multi-string";
|
|
1501
|
+
param: string;
|
|
1502
|
+
title: string;
|
|
1503
|
+
description: string;
|
|
1504
|
+
max: number;
|
|
1505
|
+
} | {
|
|
1506
|
+
type: "object-schema";
|
|
1507
|
+
param: string;
|
|
1508
|
+
title: string;
|
|
1509
|
+
description: string;
|
|
1510
|
+
objectSchema?: any;
|
|
1511
|
+
} | {
|
|
1512
|
+
type: "paired-select";
|
|
1513
|
+
param: string;
|
|
1514
|
+
title: string;
|
|
1515
|
+
description: string;
|
|
1516
|
+
fields: [{
|
|
1517
|
+
label: string;
|
|
1518
|
+
key: string;
|
|
1519
|
+
choices: {
|
|
1520
|
+
value: string;
|
|
1521
|
+
label: string;
|
|
1522
|
+
}[];
|
|
1523
|
+
description?: string | undefined;
|
|
1524
|
+
}, {
|
|
1525
|
+
label: string;
|
|
1526
|
+
key: string;
|
|
1527
|
+
choices: {
|
|
1528
|
+
value: string;
|
|
1529
|
+
label: string;
|
|
1530
|
+
}[];
|
|
1531
|
+
description?: string | undefined;
|
|
1532
|
+
}];
|
|
1533
|
+
uniqueByField?: string | undefined;
|
|
1534
|
+
} | {
|
|
1535
|
+
type: "range";
|
|
1536
|
+
param: string;
|
|
1537
|
+
title: string;
|
|
1538
|
+
description: string;
|
|
1539
|
+
max: number;
|
|
1540
|
+
default: number;
|
|
1541
|
+
min: number;
|
|
1542
|
+
step: number;
|
|
1543
|
+
} | {
|
|
1544
|
+
type: "select-boolean";
|
|
1545
|
+
param: string;
|
|
1546
|
+
title: string;
|
|
1547
|
+
description: string;
|
|
1548
|
+
default: boolean | null;
|
|
1549
|
+
} | {
|
|
1550
|
+
type: "select-string";
|
|
1551
|
+
param: string;
|
|
1552
|
+
title: string;
|
|
1553
|
+
description: string;
|
|
1554
|
+
default: string;
|
|
1555
|
+
choices: string[];
|
|
1556
|
+
} | {
|
|
1557
|
+
type: "string";
|
|
1558
|
+
param: string;
|
|
1559
|
+
title: string;
|
|
1560
|
+
description: string;
|
|
1561
|
+
default?: string | undefined;
|
|
1562
|
+
minLength?: number | undefined;
|
|
1563
|
+
maxLength?: number | undefined;
|
|
1564
|
+
}>;
|
|
1565
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1566
|
+
};
|
|
1567
|
+
price: {
|
|
1568
|
+
modelName: string;
|
|
1569
|
+
currency: string;
|
|
1570
|
+
tokenRanges: {
|
|
1571
|
+
minTokens: number;
|
|
1572
|
+
prices: {
|
|
1573
|
+
base: {
|
|
1574
|
+
inputPricePerMillion: number;
|
|
1575
|
+
outputPricePerMillion: number;
|
|
1576
|
+
};
|
|
1577
|
+
};
|
|
1578
|
+
maxTokens?: number | null | undefined;
|
|
1579
|
+
}[];
|
|
1580
|
+
};
|
|
1581
|
+
maxReasoningTokens?: number | undefined;
|
|
1582
|
+
};
|
|
1583
|
+
declare const ClaudeOpus4_8Options: z.ZodObject<{
|
|
1584
|
+
modelName: z.ZodString;
|
|
1585
|
+
apiKey: z.ZodString;
|
|
1586
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
1587
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
1588
|
+
}, "strip", z.ZodTypeAny, {
|
|
1589
|
+
modelName: string;
|
|
1590
|
+
apiKey: string;
|
|
1591
|
+
completeChatUrl?: string | undefined;
|
|
1592
|
+
streamChatUrl?: string | undefined;
|
|
1593
|
+
}, {
|
|
1594
|
+
modelName: string;
|
|
1595
|
+
apiKey: string;
|
|
1596
|
+
completeChatUrl?: string | undefined;
|
|
1597
|
+
streamChatUrl?: string | undefined;
|
|
1598
|
+
}>;
|
|
1599
|
+
type ClaudeOpus4_8OptionsType = z.infer<typeof ClaudeOpus4_8Options>;
|
|
1600
|
+
declare class ClaudeOpus4_8 extends BaseChatModel {
|
|
1601
|
+
constructor(options: ClaudeOpus4_8OptionsType);
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
declare const ClaudeFable5Literal = "claude-fable-5";
|
|
1605
|
+
declare const ClaudeFable5Schema: {
|
|
1606
|
+
description: string;
|
|
1607
|
+
name: string;
|
|
1608
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
1609
|
+
modalities: ["text" | "image" | "tool-call" | "tool-response" | "reasoning", ...("text" | "image" | "tool-call" | "tool-response" | "reasoning")[]];
|
|
1610
|
+
maxInputTokens: number;
|
|
1611
|
+
maxOutputTokens: number;
|
|
1612
|
+
config: {
|
|
1613
|
+
def: Record<string, {
|
|
1614
|
+
type: "multi-string";
|
|
1615
|
+
param: string;
|
|
1616
|
+
title: string;
|
|
1617
|
+
description: string;
|
|
1618
|
+
max: number;
|
|
1619
|
+
} | {
|
|
1620
|
+
type: "object-schema";
|
|
1621
|
+
param: string;
|
|
1622
|
+
title: string;
|
|
1623
|
+
description: string;
|
|
1624
|
+
objectSchema?: any;
|
|
1625
|
+
} | {
|
|
1626
|
+
type: "paired-select";
|
|
1627
|
+
param: string;
|
|
1628
|
+
title: string;
|
|
1629
|
+
description: string;
|
|
1630
|
+
fields: [{
|
|
1631
|
+
label: string;
|
|
1632
|
+
key: string;
|
|
1633
|
+
choices: {
|
|
1634
|
+
value: string;
|
|
1635
|
+
label: string;
|
|
1636
|
+
}[];
|
|
1637
|
+
description?: string | undefined;
|
|
1638
|
+
}, {
|
|
1639
|
+
label: string;
|
|
1640
|
+
key: string;
|
|
1641
|
+
choices: {
|
|
1642
|
+
value: string;
|
|
1643
|
+
label: string;
|
|
1644
|
+
}[];
|
|
1645
|
+
description?: string | undefined;
|
|
1646
|
+
}];
|
|
1647
|
+
uniqueByField?: string | undefined;
|
|
1648
|
+
} | {
|
|
1649
|
+
type: "range";
|
|
1650
|
+
param: string;
|
|
1651
|
+
title: string;
|
|
1652
|
+
description: string;
|
|
1653
|
+
max: number;
|
|
1654
|
+
default: number;
|
|
1655
|
+
min: number;
|
|
1656
|
+
step: number;
|
|
1657
|
+
} | {
|
|
1658
|
+
type: "select-boolean";
|
|
1659
|
+
param: string;
|
|
1660
|
+
title: string;
|
|
1661
|
+
description: string;
|
|
1662
|
+
default: boolean | null;
|
|
1663
|
+
} | {
|
|
1664
|
+
type: "select-string";
|
|
1665
|
+
param: string;
|
|
1666
|
+
title: string;
|
|
1667
|
+
description: string;
|
|
1668
|
+
default: string;
|
|
1669
|
+
choices: string[];
|
|
1670
|
+
} | {
|
|
1671
|
+
type: "string";
|
|
1672
|
+
param: string;
|
|
1673
|
+
title: string;
|
|
1674
|
+
description: string;
|
|
1675
|
+
default?: string | undefined;
|
|
1676
|
+
minLength?: number | undefined;
|
|
1677
|
+
maxLength?: number | undefined;
|
|
1678
|
+
}>;
|
|
1679
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1680
|
+
};
|
|
1681
|
+
price: {
|
|
1682
|
+
modelName: string;
|
|
1683
|
+
currency: string;
|
|
1684
|
+
tokenRanges: {
|
|
1685
|
+
minTokens: number;
|
|
1686
|
+
prices: {
|
|
1687
|
+
base: {
|
|
1688
|
+
inputPricePerMillion: number;
|
|
1689
|
+
outputPricePerMillion: number;
|
|
1690
|
+
};
|
|
1691
|
+
};
|
|
1692
|
+
maxTokens?: number | null | undefined;
|
|
1693
|
+
}[];
|
|
1694
|
+
};
|
|
1695
|
+
maxReasoningTokens?: number | undefined;
|
|
1696
|
+
};
|
|
1697
|
+
declare const ClaudeFable5Options: z.ZodObject<{
|
|
1698
|
+
modelName: z.ZodString;
|
|
1699
|
+
apiKey: z.ZodString;
|
|
1700
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
1701
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
1702
|
+
}, "strip", z.ZodTypeAny, {
|
|
1703
|
+
modelName: string;
|
|
1704
|
+
apiKey: string;
|
|
1705
|
+
completeChatUrl?: string | undefined;
|
|
1706
|
+
streamChatUrl?: string | undefined;
|
|
1707
|
+
}, {
|
|
1708
|
+
modelName: string;
|
|
1709
|
+
apiKey: string;
|
|
1710
|
+
completeChatUrl?: string | undefined;
|
|
1711
|
+
streamChatUrl?: string | undefined;
|
|
1712
|
+
}>;
|
|
1713
|
+
type ClaudeFable5OptionsType = z.infer<typeof ClaudeFable5Options>;
|
|
1714
|
+
declare class ClaudeFable5 extends BaseChatModel {
|
|
1715
|
+
constructor(options: ClaudeFable5OptionsType);
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1490
1718
|
declare const ClaudeSonnet4_520250929Literal = "claude-sonnet-4-5-20250929";
|
|
1491
1719
|
declare const ClaudeSonnet4_520250929Schema: {
|
|
1492
1720
|
description: string;
|
|
@@ -6247,4 +6475,4 @@ declare class Anthropic<C extends BaseChatModelOptionsType, E extends BaseEmbedd
|
|
|
6247
6475
|
embeddingModel(options: E): EmbeddingModelV1;
|
|
6248
6476
|
}
|
|
6249
6477
|
|
|
6250
|
-
export { Anthropic, AnthropicChatModelConfigs, AnthropicChatModelModalities, AnthropicChatModelModalitiesEnum, AnthropicChatModelRoles, AnthropicChatModelRolesMap, AnthropicCompleteChatMcpToolResultResponse, AnthropicCompleteChatMcpToolUseResponse, AnthropicCompleteChatResponse, type AnthropicCompleteChatResponseType, AnthropicEmbeddingModelConfigs, AnthropicEmbeddingModelModalities, AnthropicEmbeddingModelModalitiesEnum, AnthropicEmbeddingRequest, AnthropicEmbeddingRequestInput, type AnthropicEmbeddingRequestInputType, type AnthropicEmbeddingRequestType, AnthropicGetEmbeddingsResponse, AnthropicRequest, AnthropicRequestAssistantMessage, type AnthropicRequestAssistantMessageType, AnthropicRequestImageContent, type AnthropicRequestImageContentType, AnthropicRequestMcpServer, AnthropicRequestMcpServerToolConfiguration, type AnthropicRequestMcpServerToolConfigurationType, type AnthropicRequestMcpServerType, AnthropicRequestMcpToolResultContent, type AnthropicRequestMcpToolResultContentType, AnthropicRequestMcpToolUseContent, type AnthropicRequestMcpToolUseContentType, AnthropicRequestMessage, type AnthropicRequestMessageType, AnthropicRequestRedactedThinkingContent, type AnthropicRequestRedactedThinkingContentType, AnthropicRequestTextContent, type AnthropicRequestTextContentType, AnthropicRequestThinkingContent, type AnthropicRequestThinkingContentType, AnthropicRequestTool, AnthropicRequestToolCallContent, type AnthropicRequestToolCallContentType, AnthropicRequestToolChoiceEnum, type AnthropicRequestToolChoiceEnumType, AnthropicRequestToolChoiceTool, type AnthropicRequestToolChoiceToolType, AnthropicRequestToolResponseContent, type AnthropicRequestToolResponseContentType, type AnthropicRequestToolType, type AnthropicRequestType, AnthropicRequestUserMessage, type AnthropicRequestUserMessageType, AnthropicStreamChatContentBlockDeltaResponse, AnthropicStreamChatContentBlockStartMcpToolResultResponse, AnthropicStreamChatContentBlockStartMcpToolUseResponse, AnthropicStreamChatContentBlockStartResponse, AnthropicStreamChatMessageDeltaResponse, AnthropicStreamChatMessageStartResponse, AnthropicThinkingChatModelModalities, AnthropicThinkingChatModelModalitiesEnum, BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, Claude3Haiku20240307, Claude3Haiku20240307Literal, Claude3Haiku20240307Options, type Claude3Haiku20240307OptionsType, Claude3Haiku20240307Schema, Claude3Opus20240229, Claude3Opus20240229Literal, Claude3Opus20240229Options, type Claude3Opus20240229OptionsType, Claude3Opus20240229Schema, Claude3Sonnet20240229, Claude3Sonnet20240229Literal, Claude3Sonnet20240229Options, type Claude3Sonnet20240229OptionsType, Claude3Sonnet20240229Schema, Claude3_5Haiku20241022, Claude3_5Haiku20241022Literal, Claude3_5Haiku20241022Options, type Claude3_5Haiku20241022OptionsType, Claude3_5Haiku20241022Schema, Claude3_5Sonnet20240620, Claude3_5Sonnet20240620Literal, Claude3_5Sonnet20240620Options, type Claude3_5Sonnet20240620OptionsType, Claude3_5Sonnet20240620Schema, Claude3_5Sonnet20241022, Claude3_5Sonnet20241022Literal, Claude3_5Sonnet20241022Options, type Claude3_5Sonnet20241022OptionsType, Claude3_5Sonnet20241022Schema, Claude3_7Sonnet20250219, Claude3_7Sonnet20250219Literal, Claude3_7Sonnet20250219Options, type Claude3_7Sonnet20250219OptionsType, Claude3_7Sonnet20250219Schema, Claude4Opus20250514, Claude4Opus20250514Literal, Claude4Opus20250514Options, type Claude4Opus20250514OptionsType, Claude4Opus20250514Schema, Claude4Sonnet20250514, Claude4Sonnet20250514Literal, Claude4Sonnet20250514Options, type Claude4Sonnet20250514OptionsType, Claude4Sonnet20250514Schema, ClaudeHaiku4_520251001, ClaudeHaiku4_520251001Literal, ClaudeHaiku4_520251001Options, type ClaudeHaiku4_520251001OptionsType, ClaudeHaiku4_520251001Schema, ClaudeOpus4_520251101, ClaudeOpus4_520251101Literal, ClaudeOpus4_520251101Options, type ClaudeOpus4_520251101OptionsType, ClaudeOpus4_520251101Schema, ClaudeOpus4_6, ClaudeOpus4_6Literal, ClaudeOpus4_6Options, type ClaudeOpus4_6OptionsType, ClaudeOpus4_6Schema, ClaudeOpus4_7, ClaudeOpus4_7Literal, ClaudeOpus4_7Options, type ClaudeOpus4_7OptionsType, ClaudeOpus4_7Schema, ClaudeSonnet4_520250929, ClaudeSonnet4_520250929Literal, ClaudeSonnet4_520250929Options, type ClaudeSonnet4_520250929OptionsType, ClaudeSonnet4_520250929Schema, ClaudeSonnet4_6, ClaudeSonnet4_6Literal, ClaudeSonnet4_6Options, type ClaudeSonnet4_6OptionsType, ClaudeSonnet4_6Schema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, EmbeddingModelFlexibleConfigDef, EmbeddingModelFlexibleConfigSchema, ProviderLiteral, Voyage3, Voyage3Large, Voyage3LargeLiteral, Voyage3LargeOptions, type Voyage3LargeOptionsType, Voyage3LargeSchema, Voyage3Lite, Voyage3LiteLiteral, Voyage3LiteOptions, type Voyage3LiteOptionsType, Voyage3LiteSchema, Voyage3Literal, Voyage3Options, type Voyage3OptionsType, Voyage3Schema, Voyage3_5, Voyage3_5Lite, Voyage3_5LiteLiteral, Voyage3_5LiteOptions, type Voyage3_5LiteOptionsType, Voyage3_5LiteSchema, Voyage3_5Literal, Voyage3_5Options, type Voyage3_5OptionsType, Voyage3_5Schema, Voyage4, Voyage4Large, Voyage4LargeLiteral, Voyage4LargeOptions, type Voyage4LargeOptionsType, Voyage4LargeSchema, Voyage4Lite, Voyage4LiteLiteral, Voyage4LiteOptions, type Voyage4LiteOptionsType, Voyage4LiteSchema, Voyage4Literal, Voyage4Nano, Voyage4NanoLiteral, Voyage4NanoOptions, type Voyage4NanoOptionsType, Voyage4NanoSchema, Voyage4Options, type Voyage4OptionsType, Voyage4Schema, VoyageCode2, VoyageCode2Literal, VoyageCode2Options, type VoyageCode2OptionsType, VoyageCode2Schema, VoyageCode3, VoyageCode3Literal, VoyageCode3Options, type VoyageCode3OptionsType, VoyageCode3Schema, VoyageFinance2, VoyageFinance2Literal, VoyageFinance2Options, type VoyageFinance2OptionsType, VoyageFinance2Schema, VoyageLaw2, VoyageLaw2Literal, VoyageLaw2Options, type VoyageLaw2OptionsType, VoyageLaw2Schema, VoyageMultilingual2, VoyageMultilingual2Literal, VoyageMultilingual2Options, type VoyageMultilingual2OptionsType, VoyageMultilingual2Schema, encodingFormat, inputType, maxTokens, mcp, mcpServers, outputDimension, outputDtype, stop, temperature, toolChoice, topK, topP, truncation };
|
|
6478
|
+
export { Anthropic, AnthropicChatModelConfigs, AnthropicChatModelModalities, AnthropicChatModelModalitiesEnum, AnthropicChatModelRoles, AnthropicChatModelRolesMap, AnthropicCompleteChatMcpToolResultResponse, AnthropicCompleteChatMcpToolUseResponse, AnthropicCompleteChatResponse, type AnthropicCompleteChatResponseType, AnthropicEmbeddingModelConfigs, AnthropicEmbeddingModelModalities, AnthropicEmbeddingModelModalitiesEnum, AnthropicEmbeddingRequest, AnthropicEmbeddingRequestInput, type AnthropicEmbeddingRequestInputType, type AnthropicEmbeddingRequestType, AnthropicGetEmbeddingsResponse, AnthropicRequest, AnthropicRequestAssistantMessage, type AnthropicRequestAssistantMessageType, AnthropicRequestImageContent, type AnthropicRequestImageContentType, AnthropicRequestMcpServer, AnthropicRequestMcpServerToolConfiguration, type AnthropicRequestMcpServerToolConfigurationType, type AnthropicRequestMcpServerType, AnthropicRequestMcpToolResultContent, type AnthropicRequestMcpToolResultContentType, AnthropicRequestMcpToolUseContent, type AnthropicRequestMcpToolUseContentType, AnthropicRequestMessage, type AnthropicRequestMessageType, AnthropicRequestRedactedThinkingContent, type AnthropicRequestRedactedThinkingContentType, AnthropicRequestTextContent, type AnthropicRequestTextContentType, AnthropicRequestThinkingContent, type AnthropicRequestThinkingContentType, AnthropicRequestTool, AnthropicRequestToolCallContent, type AnthropicRequestToolCallContentType, AnthropicRequestToolChoiceEnum, type AnthropicRequestToolChoiceEnumType, AnthropicRequestToolChoiceTool, type AnthropicRequestToolChoiceToolType, AnthropicRequestToolResponseContent, type AnthropicRequestToolResponseContentType, type AnthropicRequestToolType, type AnthropicRequestType, AnthropicRequestUserMessage, type AnthropicRequestUserMessageType, AnthropicStreamChatContentBlockDeltaResponse, AnthropicStreamChatContentBlockStartMcpToolResultResponse, AnthropicStreamChatContentBlockStartMcpToolUseResponse, AnthropicStreamChatContentBlockStartResponse, AnthropicStreamChatMessageDeltaResponse, AnthropicStreamChatMessageStartResponse, AnthropicThinkingChatModelModalities, AnthropicThinkingChatModelModalitiesEnum, BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, Claude3Haiku20240307, Claude3Haiku20240307Literal, Claude3Haiku20240307Options, type Claude3Haiku20240307OptionsType, Claude3Haiku20240307Schema, Claude3Opus20240229, Claude3Opus20240229Literal, Claude3Opus20240229Options, type Claude3Opus20240229OptionsType, Claude3Opus20240229Schema, Claude3Sonnet20240229, Claude3Sonnet20240229Literal, Claude3Sonnet20240229Options, type Claude3Sonnet20240229OptionsType, Claude3Sonnet20240229Schema, Claude3_5Haiku20241022, Claude3_5Haiku20241022Literal, Claude3_5Haiku20241022Options, type Claude3_5Haiku20241022OptionsType, Claude3_5Haiku20241022Schema, Claude3_5Sonnet20240620, Claude3_5Sonnet20240620Literal, Claude3_5Sonnet20240620Options, type Claude3_5Sonnet20240620OptionsType, Claude3_5Sonnet20240620Schema, Claude3_5Sonnet20241022, Claude3_5Sonnet20241022Literal, Claude3_5Sonnet20241022Options, type Claude3_5Sonnet20241022OptionsType, Claude3_5Sonnet20241022Schema, Claude3_7Sonnet20250219, Claude3_7Sonnet20250219Literal, Claude3_7Sonnet20250219Options, type Claude3_7Sonnet20250219OptionsType, Claude3_7Sonnet20250219Schema, Claude4Opus20250514, Claude4Opus20250514Literal, Claude4Opus20250514Options, type Claude4Opus20250514OptionsType, Claude4Opus20250514Schema, Claude4Sonnet20250514, Claude4Sonnet20250514Literal, Claude4Sonnet20250514Options, type Claude4Sonnet20250514OptionsType, Claude4Sonnet20250514Schema, ClaudeFable5, ClaudeFable5Literal, ClaudeFable5Options, type ClaudeFable5OptionsType, ClaudeFable5Schema, ClaudeHaiku4_520251001, ClaudeHaiku4_520251001Literal, ClaudeHaiku4_520251001Options, type ClaudeHaiku4_520251001OptionsType, ClaudeHaiku4_520251001Schema, ClaudeOpus4_520251101, ClaudeOpus4_520251101Literal, ClaudeOpus4_520251101Options, type ClaudeOpus4_520251101OptionsType, ClaudeOpus4_520251101Schema, ClaudeOpus4_6, ClaudeOpus4_6Literal, ClaudeOpus4_6Options, type ClaudeOpus4_6OptionsType, ClaudeOpus4_6Schema, ClaudeOpus4_7, ClaudeOpus4_7Literal, ClaudeOpus4_7Options, type ClaudeOpus4_7OptionsType, ClaudeOpus4_7Schema, ClaudeOpus4_8, ClaudeOpus4_8Literal, ClaudeOpus4_8Options, type ClaudeOpus4_8OptionsType, ClaudeOpus4_8Schema, ClaudeSonnet4_520250929, ClaudeSonnet4_520250929Literal, ClaudeSonnet4_520250929Options, type ClaudeSonnet4_520250929OptionsType, ClaudeSonnet4_520250929Schema, ClaudeSonnet4_6, ClaudeSonnet4_6Literal, ClaudeSonnet4_6Options, type ClaudeSonnet4_6OptionsType, ClaudeSonnet4_6Schema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, EmbeddingModelFlexibleConfigDef, EmbeddingModelFlexibleConfigSchema, ProviderLiteral, Voyage3, Voyage3Large, Voyage3LargeLiteral, Voyage3LargeOptions, type Voyage3LargeOptionsType, Voyage3LargeSchema, Voyage3Lite, Voyage3LiteLiteral, Voyage3LiteOptions, type Voyage3LiteOptionsType, Voyage3LiteSchema, Voyage3Literal, Voyage3Options, type Voyage3OptionsType, Voyage3Schema, Voyage3_5, Voyage3_5Lite, Voyage3_5LiteLiteral, Voyage3_5LiteOptions, type Voyage3_5LiteOptionsType, Voyage3_5LiteSchema, Voyage3_5Literal, Voyage3_5Options, type Voyage3_5OptionsType, Voyage3_5Schema, Voyage4, Voyage4Large, Voyage4LargeLiteral, Voyage4LargeOptions, type Voyage4LargeOptionsType, Voyage4LargeSchema, Voyage4Lite, Voyage4LiteLiteral, Voyage4LiteOptions, type Voyage4LiteOptionsType, Voyage4LiteSchema, Voyage4Literal, Voyage4Nano, Voyage4NanoLiteral, Voyage4NanoOptions, type Voyage4NanoOptionsType, Voyage4NanoSchema, Voyage4Options, type Voyage4OptionsType, Voyage4Schema, VoyageCode2, VoyageCode2Literal, VoyageCode2Options, type VoyageCode2OptionsType, VoyageCode2Schema, VoyageCode3, VoyageCode3Literal, VoyageCode3Options, type VoyageCode3OptionsType, VoyageCode3Schema, VoyageFinance2, VoyageFinance2Literal, VoyageFinance2Options, type VoyageFinance2OptionsType, VoyageFinance2Schema, VoyageLaw2, VoyageLaw2Literal, VoyageLaw2Options, type VoyageLaw2OptionsType, VoyageLaw2Schema, VoyageMultilingual2, VoyageMultilingual2Literal, VoyageMultilingual2Options, type VoyageMultilingual2OptionsType, VoyageMultilingual2Schema, encodingFormat, inputType, maxTokens, mcp, mcpServers, outputDimension, outputDtype, stop, temperature, toolChoice, topK, topP, truncation };
|
package/dist/index.d.ts
CHANGED
|
@@ -1487,6 +1487,234 @@ declare class ClaudeOpus4_7 extends BaseChatModel {
|
|
|
1487
1487
|
constructor(options: ClaudeOpus4_7OptionsType);
|
|
1488
1488
|
}
|
|
1489
1489
|
|
|
1490
|
+
declare const ClaudeOpus4_8Literal = "claude-opus-4-8";
|
|
1491
|
+
declare const ClaudeOpus4_8Schema: {
|
|
1492
|
+
description: string;
|
|
1493
|
+
name: string;
|
|
1494
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
1495
|
+
modalities: ["text" | "image" | "tool-call" | "tool-response" | "reasoning", ...("text" | "image" | "tool-call" | "tool-response" | "reasoning")[]];
|
|
1496
|
+
maxInputTokens: number;
|
|
1497
|
+
maxOutputTokens: number;
|
|
1498
|
+
config: {
|
|
1499
|
+
def: Record<string, {
|
|
1500
|
+
type: "multi-string";
|
|
1501
|
+
param: string;
|
|
1502
|
+
title: string;
|
|
1503
|
+
description: string;
|
|
1504
|
+
max: number;
|
|
1505
|
+
} | {
|
|
1506
|
+
type: "object-schema";
|
|
1507
|
+
param: string;
|
|
1508
|
+
title: string;
|
|
1509
|
+
description: string;
|
|
1510
|
+
objectSchema?: any;
|
|
1511
|
+
} | {
|
|
1512
|
+
type: "paired-select";
|
|
1513
|
+
param: string;
|
|
1514
|
+
title: string;
|
|
1515
|
+
description: string;
|
|
1516
|
+
fields: [{
|
|
1517
|
+
label: string;
|
|
1518
|
+
key: string;
|
|
1519
|
+
choices: {
|
|
1520
|
+
value: string;
|
|
1521
|
+
label: string;
|
|
1522
|
+
}[];
|
|
1523
|
+
description?: string | undefined;
|
|
1524
|
+
}, {
|
|
1525
|
+
label: string;
|
|
1526
|
+
key: string;
|
|
1527
|
+
choices: {
|
|
1528
|
+
value: string;
|
|
1529
|
+
label: string;
|
|
1530
|
+
}[];
|
|
1531
|
+
description?: string | undefined;
|
|
1532
|
+
}];
|
|
1533
|
+
uniqueByField?: string | undefined;
|
|
1534
|
+
} | {
|
|
1535
|
+
type: "range";
|
|
1536
|
+
param: string;
|
|
1537
|
+
title: string;
|
|
1538
|
+
description: string;
|
|
1539
|
+
max: number;
|
|
1540
|
+
default: number;
|
|
1541
|
+
min: number;
|
|
1542
|
+
step: number;
|
|
1543
|
+
} | {
|
|
1544
|
+
type: "select-boolean";
|
|
1545
|
+
param: string;
|
|
1546
|
+
title: string;
|
|
1547
|
+
description: string;
|
|
1548
|
+
default: boolean | null;
|
|
1549
|
+
} | {
|
|
1550
|
+
type: "select-string";
|
|
1551
|
+
param: string;
|
|
1552
|
+
title: string;
|
|
1553
|
+
description: string;
|
|
1554
|
+
default: string;
|
|
1555
|
+
choices: string[];
|
|
1556
|
+
} | {
|
|
1557
|
+
type: "string";
|
|
1558
|
+
param: string;
|
|
1559
|
+
title: string;
|
|
1560
|
+
description: string;
|
|
1561
|
+
default?: string | undefined;
|
|
1562
|
+
minLength?: number | undefined;
|
|
1563
|
+
maxLength?: number | undefined;
|
|
1564
|
+
}>;
|
|
1565
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1566
|
+
};
|
|
1567
|
+
price: {
|
|
1568
|
+
modelName: string;
|
|
1569
|
+
currency: string;
|
|
1570
|
+
tokenRanges: {
|
|
1571
|
+
minTokens: number;
|
|
1572
|
+
prices: {
|
|
1573
|
+
base: {
|
|
1574
|
+
inputPricePerMillion: number;
|
|
1575
|
+
outputPricePerMillion: number;
|
|
1576
|
+
};
|
|
1577
|
+
};
|
|
1578
|
+
maxTokens?: number | null | undefined;
|
|
1579
|
+
}[];
|
|
1580
|
+
};
|
|
1581
|
+
maxReasoningTokens?: number | undefined;
|
|
1582
|
+
};
|
|
1583
|
+
declare const ClaudeOpus4_8Options: z.ZodObject<{
|
|
1584
|
+
modelName: z.ZodString;
|
|
1585
|
+
apiKey: z.ZodString;
|
|
1586
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
1587
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
1588
|
+
}, "strip", z.ZodTypeAny, {
|
|
1589
|
+
modelName: string;
|
|
1590
|
+
apiKey: string;
|
|
1591
|
+
completeChatUrl?: string | undefined;
|
|
1592
|
+
streamChatUrl?: string | undefined;
|
|
1593
|
+
}, {
|
|
1594
|
+
modelName: string;
|
|
1595
|
+
apiKey: string;
|
|
1596
|
+
completeChatUrl?: string | undefined;
|
|
1597
|
+
streamChatUrl?: string | undefined;
|
|
1598
|
+
}>;
|
|
1599
|
+
type ClaudeOpus4_8OptionsType = z.infer<typeof ClaudeOpus4_8Options>;
|
|
1600
|
+
declare class ClaudeOpus4_8 extends BaseChatModel {
|
|
1601
|
+
constructor(options: ClaudeOpus4_8OptionsType);
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
declare const ClaudeFable5Literal = "claude-fable-5";
|
|
1605
|
+
declare const ClaudeFable5Schema: {
|
|
1606
|
+
description: string;
|
|
1607
|
+
name: string;
|
|
1608
|
+
roles: Partial<Record<"system" | "user" | "assistant" | "tool", string | undefined>>;
|
|
1609
|
+
modalities: ["text" | "image" | "tool-call" | "tool-response" | "reasoning", ...("text" | "image" | "tool-call" | "tool-response" | "reasoning")[]];
|
|
1610
|
+
maxInputTokens: number;
|
|
1611
|
+
maxOutputTokens: number;
|
|
1612
|
+
config: {
|
|
1613
|
+
def: Record<string, {
|
|
1614
|
+
type: "multi-string";
|
|
1615
|
+
param: string;
|
|
1616
|
+
title: string;
|
|
1617
|
+
description: string;
|
|
1618
|
+
max: number;
|
|
1619
|
+
} | {
|
|
1620
|
+
type: "object-schema";
|
|
1621
|
+
param: string;
|
|
1622
|
+
title: string;
|
|
1623
|
+
description: string;
|
|
1624
|
+
objectSchema?: any;
|
|
1625
|
+
} | {
|
|
1626
|
+
type: "paired-select";
|
|
1627
|
+
param: string;
|
|
1628
|
+
title: string;
|
|
1629
|
+
description: string;
|
|
1630
|
+
fields: [{
|
|
1631
|
+
label: string;
|
|
1632
|
+
key: string;
|
|
1633
|
+
choices: {
|
|
1634
|
+
value: string;
|
|
1635
|
+
label: string;
|
|
1636
|
+
}[];
|
|
1637
|
+
description?: string | undefined;
|
|
1638
|
+
}, {
|
|
1639
|
+
label: string;
|
|
1640
|
+
key: string;
|
|
1641
|
+
choices: {
|
|
1642
|
+
value: string;
|
|
1643
|
+
label: string;
|
|
1644
|
+
}[];
|
|
1645
|
+
description?: string | undefined;
|
|
1646
|
+
}];
|
|
1647
|
+
uniqueByField?: string | undefined;
|
|
1648
|
+
} | {
|
|
1649
|
+
type: "range";
|
|
1650
|
+
param: string;
|
|
1651
|
+
title: string;
|
|
1652
|
+
description: string;
|
|
1653
|
+
max: number;
|
|
1654
|
+
default: number;
|
|
1655
|
+
min: number;
|
|
1656
|
+
step: number;
|
|
1657
|
+
} | {
|
|
1658
|
+
type: "select-boolean";
|
|
1659
|
+
param: string;
|
|
1660
|
+
title: string;
|
|
1661
|
+
description: string;
|
|
1662
|
+
default: boolean | null;
|
|
1663
|
+
} | {
|
|
1664
|
+
type: "select-string";
|
|
1665
|
+
param: string;
|
|
1666
|
+
title: string;
|
|
1667
|
+
description: string;
|
|
1668
|
+
default: string;
|
|
1669
|
+
choices: string[];
|
|
1670
|
+
} | {
|
|
1671
|
+
type: "string";
|
|
1672
|
+
param: string;
|
|
1673
|
+
title: string;
|
|
1674
|
+
description: string;
|
|
1675
|
+
default?: string | undefined;
|
|
1676
|
+
minLength?: number | undefined;
|
|
1677
|
+
maxLength?: number | undefined;
|
|
1678
|
+
}>;
|
|
1679
|
+
schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, unknown, unknown>;
|
|
1680
|
+
};
|
|
1681
|
+
price: {
|
|
1682
|
+
modelName: string;
|
|
1683
|
+
currency: string;
|
|
1684
|
+
tokenRanges: {
|
|
1685
|
+
minTokens: number;
|
|
1686
|
+
prices: {
|
|
1687
|
+
base: {
|
|
1688
|
+
inputPricePerMillion: number;
|
|
1689
|
+
outputPricePerMillion: number;
|
|
1690
|
+
};
|
|
1691
|
+
};
|
|
1692
|
+
maxTokens?: number | null | undefined;
|
|
1693
|
+
}[];
|
|
1694
|
+
};
|
|
1695
|
+
maxReasoningTokens?: number | undefined;
|
|
1696
|
+
};
|
|
1697
|
+
declare const ClaudeFable5Options: z.ZodObject<{
|
|
1698
|
+
modelName: z.ZodString;
|
|
1699
|
+
apiKey: z.ZodString;
|
|
1700
|
+
completeChatUrl: z.ZodOptional<z.ZodString>;
|
|
1701
|
+
streamChatUrl: z.ZodOptional<z.ZodString>;
|
|
1702
|
+
}, "strip", z.ZodTypeAny, {
|
|
1703
|
+
modelName: string;
|
|
1704
|
+
apiKey: string;
|
|
1705
|
+
completeChatUrl?: string | undefined;
|
|
1706
|
+
streamChatUrl?: string | undefined;
|
|
1707
|
+
}, {
|
|
1708
|
+
modelName: string;
|
|
1709
|
+
apiKey: string;
|
|
1710
|
+
completeChatUrl?: string | undefined;
|
|
1711
|
+
streamChatUrl?: string | undefined;
|
|
1712
|
+
}>;
|
|
1713
|
+
type ClaudeFable5OptionsType = z.infer<typeof ClaudeFable5Options>;
|
|
1714
|
+
declare class ClaudeFable5 extends BaseChatModel {
|
|
1715
|
+
constructor(options: ClaudeFable5OptionsType);
|
|
1716
|
+
}
|
|
1717
|
+
|
|
1490
1718
|
declare const ClaudeSonnet4_520250929Literal = "claude-sonnet-4-5-20250929";
|
|
1491
1719
|
declare const ClaudeSonnet4_520250929Schema: {
|
|
1492
1720
|
description: string;
|
|
@@ -6247,4 +6475,4 @@ declare class Anthropic<C extends BaseChatModelOptionsType, E extends BaseEmbedd
|
|
|
6247
6475
|
embeddingModel(options: E): EmbeddingModelV1;
|
|
6248
6476
|
}
|
|
6249
6477
|
|
|
6250
|
-
export { Anthropic, AnthropicChatModelConfigs, AnthropicChatModelModalities, AnthropicChatModelModalitiesEnum, AnthropicChatModelRoles, AnthropicChatModelRolesMap, AnthropicCompleteChatMcpToolResultResponse, AnthropicCompleteChatMcpToolUseResponse, AnthropicCompleteChatResponse, type AnthropicCompleteChatResponseType, AnthropicEmbeddingModelConfigs, AnthropicEmbeddingModelModalities, AnthropicEmbeddingModelModalitiesEnum, AnthropicEmbeddingRequest, AnthropicEmbeddingRequestInput, type AnthropicEmbeddingRequestInputType, type AnthropicEmbeddingRequestType, AnthropicGetEmbeddingsResponse, AnthropicRequest, AnthropicRequestAssistantMessage, type AnthropicRequestAssistantMessageType, AnthropicRequestImageContent, type AnthropicRequestImageContentType, AnthropicRequestMcpServer, AnthropicRequestMcpServerToolConfiguration, type AnthropicRequestMcpServerToolConfigurationType, type AnthropicRequestMcpServerType, AnthropicRequestMcpToolResultContent, type AnthropicRequestMcpToolResultContentType, AnthropicRequestMcpToolUseContent, type AnthropicRequestMcpToolUseContentType, AnthropicRequestMessage, type AnthropicRequestMessageType, AnthropicRequestRedactedThinkingContent, type AnthropicRequestRedactedThinkingContentType, AnthropicRequestTextContent, type AnthropicRequestTextContentType, AnthropicRequestThinkingContent, type AnthropicRequestThinkingContentType, AnthropicRequestTool, AnthropicRequestToolCallContent, type AnthropicRequestToolCallContentType, AnthropicRequestToolChoiceEnum, type AnthropicRequestToolChoiceEnumType, AnthropicRequestToolChoiceTool, type AnthropicRequestToolChoiceToolType, AnthropicRequestToolResponseContent, type AnthropicRequestToolResponseContentType, type AnthropicRequestToolType, type AnthropicRequestType, AnthropicRequestUserMessage, type AnthropicRequestUserMessageType, AnthropicStreamChatContentBlockDeltaResponse, AnthropicStreamChatContentBlockStartMcpToolResultResponse, AnthropicStreamChatContentBlockStartMcpToolUseResponse, AnthropicStreamChatContentBlockStartResponse, AnthropicStreamChatMessageDeltaResponse, AnthropicStreamChatMessageStartResponse, AnthropicThinkingChatModelModalities, AnthropicThinkingChatModelModalitiesEnum, BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, Claude3Haiku20240307, Claude3Haiku20240307Literal, Claude3Haiku20240307Options, type Claude3Haiku20240307OptionsType, Claude3Haiku20240307Schema, Claude3Opus20240229, Claude3Opus20240229Literal, Claude3Opus20240229Options, type Claude3Opus20240229OptionsType, Claude3Opus20240229Schema, Claude3Sonnet20240229, Claude3Sonnet20240229Literal, Claude3Sonnet20240229Options, type Claude3Sonnet20240229OptionsType, Claude3Sonnet20240229Schema, Claude3_5Haiku20241022, Claude3_5Haiku20241022Literal, Claude3_5Haiku20241022Options, type Claude3_5Haiku20241022OptionsType, Claude3_5Haiku20241022Schema, Claude3_5Sonnet20240620, Claude3_5Sonnet20240620Literal, Claude3_5Sonnet20240620Options, type Claude3_5Sonnet20240620OptionsType, Claude3_5Sonnet20240620Schema, Claude3_5Sonnet20241022, Claude3_5Sonnet20241022Literal, Claude3_5Sonnet20241022Options, type Claude3_5Sonnet20241022OptionsType, Claude3_5Sonnet20241022Schema, Claude3_7Sonnet20250219, Claude3_7Sonnet20250219Literal, Claude3_7Sonnet20250219Options, type Claude3_7Sonnet20250219OptionsType, Claude3_7Sonnet20250219Schema, Claude4Opus20250514, Claude4Opus20250514Literal, Claude4Opus20250514Options, type Claude4Opus20250514OptionsType, Claude4Opus20250514Schema, Claude4Sonnet20250514, Claude4Sonnet20250514Literal, Claude4Sonnet20250514Options, type Claude4Sonnet20250514OptionsType, Claude4Sonnet20250514Schema, ClaudeHaiku4_520251001, ClaudeHaiku4_520251001Literal, ClaudeHaiku4_520251001Options, type ClaudeHaiku4_520251001OptionsType, ClaudeHaiku4_520251001Schema, ClaudeOpus4_520251101, ClaudeOpus4_520251101Literal, ClaudeOpus4_520251101Options, type ClaudeOpus4_520251101OptionsType, ClaudeOpus4_520251101Schema, ClaudeOpus4_6, ClaudeOpus4_6Literal, ClaudeOpus4_6Options, type ClaudeOpus4_6OptionsType, ClaudeOpus4_6Schema, ClaudeOpus4_7, ClaudeOpus4_7Literal, ClaudeOpus4_7Options, type ClaudeOpus4_7OptionsType, ClaudeOpus4_7Schema, ClaudeSonnet4_520250929, ClaudeSonnet4_520250929Literal, ClaudeSonnet4_520250929Options, type ClaudeSonnet4_520250929OptionsType, ClaudeSonnet4_520250929Schema, ClaudeSonnet4_6, ClaudeSonnet4_6Literal, ClaudeSonnet4_6Options, type ClaudeSonnet4_6OptionsType, ClaudeSonnet4_6Schema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, EmbeddingModelFlexibleConfigDef, EmbeddingModelFlexibleConfigSchema, ProviderLiteral, Voyage3, Voyage3Large, Voyage3LargeLiteral, Voyage3LargeOptions, type Voyage3LargeOptionsType, Voyage3LargeSchema, Voyage3Lite, Voyage3LiteLiteral, Voyage3LiteOptions, type Voyage3LiteOptionsType, Voyage3LiteSchema, Voyage3Literal, Voyage3Options, type Voyage3OptionsType, Voyage3Schema, Voyage3_5, Voyage3_5Lite, Voyage3_5LiteLiteral, Voyage3_5LiteOptions, type Voyage3_5LiteOptionsType, Voyage3_5LiteSchema, Voyage3_5Literal, Voyage3_5Options, type Voyage3_5OptionsType, Voyage3_5Schema, Voyage4, Voyage4Large, Voyage4LargeLiteral, Voyage4LargeOptions, type Voyage4LargeOptionsType, Voyage4LargeSchema, Voyage4Lite, Voyage4LiteLiteral, Voyage4LiteOptions, type Voyage4LiteOptionsType, Voyage4LiteSchema, Voyage4Literal, Voyage4Nano, Voyage4NanoLiteral, Voyage4NanoOptions, type Voyage4NanoOptionsType, Voyage4NanoSchema, Voyage4Options, type Voyage4OptionsType, Voyage4Schema, VoyageCode2, VoyageCode2Literal, VoyageCode2Options, type VoyageCode2OptionsType, VoyageCode2Schema, VoyageCode3, VoyageCode3Literal, VoyageCode3Options, type VoyageCode3OptionsType, VoyageCode3Schema, VoyageFinance2, VoyageFinance2Literal, VoyageFinance2Options, type VoyageFinance2OptionsType, VoyageFinance2Schema, VoyageLaw2, VoyageLaw2Literal, VoyageLaw2Options, type VoyageLaw2OptionsType, VoyageLaw2Schema, VoyageMultilingual2, VoyageMultilingual2Literal, VoyageMultilingual2Options, type VoyageMultilingual2OptionsType, VoyageMultilingual2Schema, encodingFormat, inputType, maxTokens, mcp, mcpServers, outputDimension, outputDtype, stop, temperature, toolChoice, topK, topP, truncation };
|
|
6478
|
+
export { Anthropic, AnthropicChatModelConfigs, AnthropicChatModelModalities, AnthropicChatModelModalitiesEnum, AnthropicChatModelRoles, AnthropicChatModelRolesMap, AnthropicCompleteChatMcpToolResultResponse, AnthropicCompleteChatMcpToolUseResponse, AnthropicCompleteChatResponse, type AnthropicCompleteChatResponseType, AnthropicEmbeddingModelConfigs, AnthropicEmbeddingModelModalities, AnthropicEmbeddingModelModalitiesEnum, AnthropicEmbeddingRequest, AnthropicEmbeddingRequestInput, type AnthropicEmbeddingRequestInputType, type AnthropicEmbeddingRequestType, AnthropicGetEmbeddingsResponse, AnthropicRequest, AnthropicRequestAssistantMessage, type AnthropicRequestAssistantMessageType, AnthropicRequestImageContent, type AnthropicRequestImageContentType, AnthropicRequestMcpServer, AnthropicRequestMcpServerToolConfiguration, type AnthropicRequestMcpServerToolConfigurationType, type AnthropicRequestMcpServerType, AnthropicRequestMcpToolResultContent, type AnthropicRequestMcpToolResultContentType, AnthropicRequestMcpToolUseContent, type AnthropicRequestMcpToolUseContentType, AnthropicRequestMessage, type AnthropicRequestMessageType, AnthropicRequestRedactedThinkingContent, type AnthropicRequestRedactedThinkingContentType, AnthropicRequestTextContent, type AnthropicRequestTextContentType, AnthropicRequestThinkingContent, type AnthropicRequestThinkingContentType, AnthropicRequestTool, AnthropicRequestToolCallContent, type AnthropicRequestToolCallContentType, AnthropicRequestToolChoiceEnum, type AnthropicRequestToolChoiceEnumType, AnthropicRequestToolChoiceTool, type AnthropicRequestToolChoiceToolType, AnthropicRequestToolResponseContent, type AnthropicRequestToolResponseContentType, type AnthropicRequestToolType, type AnthropicRequestType, AnthropicRequestUserMessage, type AnthropicRequestUserMessageType, AnthropicStreamChatContentBlockDeltaResponse, AnthropicStreamChatContentBlockStartMcpToolResultResponse, AnthropicStreamChatContentBlockStartMcpToolUseResponse, AnthropicStreamChatContentBlockStartResponse, AnthropicStreamChatMessageDeltaResponse, AnthropicStreamChatMessageStartResponse, AnthropicThinkingChatModelModalities, AnthropicThinkingChatModelModalitiesEnum, BaseChatModel, BaseChatModelOptions, type BaseChatModelOptionsType, BaseEmbeddingModel, BaseEmbeddingModelOptions, type BaseEmbeddingModelOptionsType, ChatModelBaseConfigDef, ChatModelBaseConfigSchema, ChatModelReasoningConfigDef, ChatModelReasoningConfigSchema, Claude3Haiku20240307, Claude3Haiku20240307Literal, Claude3Haiku20240307Options, type Claude3Haiku20240307OptionsType, Claude3Haiku20240307Schema, Claude3Opus20240229, Claude3Opus20240229Literal, Claude3Opus20240229Options, type Claude3Opus20240229OptionsType, Claude3Opus20240229Schema, Claude3Sonnet20240229, Claude3Sonnet20240229Literal, Claude3Sonnet20240229Options, type Claude3Sonnet20240229OptionsType, Claude3Sonnet20240229Schema, Claude3_5Haiku20241022, Claude3_5Haiku20241022Literal, Claude3_5Haiku20241022Options, type Claude3_5Haiku20241022OptionsType, Claude3_5Haiku20241022Schema, Claude3_5Sonnet20240620, Claude3_5Sonnet20240620Literal, Claude3_5Sonnet20240620Options, type Claude3_5Sonnet20240620OptionsType, Claude3_5Sonnet20240620Schema, Claude3_5Sonnet20241022, Claude3_5Sonnet20241022Literal, Claude3_5Sonnet20241022Options, type Claude3_5Sonnet20241022OptionsType, Claude3_5Sonnet20241022Schema, Claude3_7Sonnet20250219, Claude3_7Sonnet20250219Literal, Claude3_7Sonnet20250219Options, type Claude3_7Sonnet20250219OptionsType, Claude3_7Sonnet20250219Schema, Claude4Opus20250514, Claude4Opus20250514Literal, Claude4Opus20250514Options, type Claude4Opus20250514OptionsType, Claude4Opus20250514Schema, Claude4Sonnet20250514, Claude4Sonnet20250514Literal, Claude4Sonnet20250514Options, type Claude4Sonnet20250514OptionsType, Claude4Sonnet20250514Schema, ClaudeFable5, ClaudeFable5Literal, ClaudeFable5Options, type ClaudeFable5OptionsType, ClaudeFable5Schema, ClaudeHaiku4_520251001, ClaudeHaiku4_520251001Literal, ClaudeHaiku4_520251001Options, type ClaudeHaiku4_520251001OptionsType, ClaudeHaiku4_520251001Schema, ClaudeOpus4_520251101, ClaudeOpus4_520251101Literal, ClaudeOpus4_520251101Options, type ClaudeOpus4_520251101OptionsType, ClaudeOpus4_520251101Schema, ClaudeOpus4_6, ClaudeOpus4_6Literal, ClaudeOpus4_6Options, type ClaudeOpus4_6OptionsType, ClaudeOpus4_6Schema, ClaudeOpus4_7, ClaudeOpus4_7Literal, ClaudeOpus4_7Options, type ClaudeOpus4_7OptionsType, ClaudeOpus4_7Schema, ClaudeOpus4_8, ClaudeOpus4_8Literal, ClaudeOpus4_8Options, type ClaudeOpus4_8OptionsType, ClaudeOpus4_8Schema, ClaudeSonnet4_520250929, ClaudeSonnet4_520250929Literal, ClaudeSonnet4_520250929Options, type ClaudeSonnet4_520250929OptionsType, ClaudeSonnet4_520250929Schema, ClaudeSonnet4_6, ClaudeSonnet4_6Literal, ClaudeSonnet4_6Options, type ClaudeSonnet4_6OptionsType, ClaudeSonnet4_6Schema, EmbeddingModelBaseConfigDef, EmbeddingModelBaseConfigSchema, EmbeddingModelFlexibleConfigDef, EmbeddingModelFlexibleConfigSchema, ProviderLiteral, Voyage3, Voyage3Large, Voyage3LargeLiteral, Voyage3LargeOptions, type Voyage3LargeOptionsType, Voyage3LargeSchema, Voyage3Lite, Voyage3LiteLiteral, Voyage3LiteOptions, type Voyage3LiteOptionsType, Voyage3LiteSchema, Voyage3Literal, Voyage3Options, type Voyage3OptionsType, Voyage3Schema, Voyage3_5, Voyage3_5Lite, Voyage3_5LiteLiteral, Voyage3_5LiteOptions, type Voyage3_5LiteOptionsType, Voyage3_5LiteSchema, Voyage3_5Literal, Voyage3_5Options, type Voyage3_5OptionsType, Voyage3_5Schema, Voyage4, Voyage4Large, Voyage4LargeLiteral, Voyage4LargeOptions, type Voyage4LargeOptionsType, Voyage4LargeSchema, Voyage4Lite, Voyage4LiteLiteral, Voyage4LiteOptions, type Voyage4LiteOptionsType, Voyage4LiteSchema, Voyage4Literal, Voyage4Nano, Voyage4NanoLiteral, Voyage4NanoOptions, type Voyage4NanoOptionsType, Voyage4NanoSchema, Voyage4Options, type Voyage4OptionsType, Voyage4Schema, VoyageCode2, VoyageCode2Literal, VoyageCode2Options, type VoyageCode2OptionsType, VoyageCode2Schema, VoyageCode3, VoyageCode3Literal, VoyageCode3Options, type VoyageCode3OptionsType, VoyageCode3Schema, VoyageFinance2, VoyageFinance2Literal, VoyageFinance2Options, type VoyageFinance2OptionsType, VoyageFinance2Schema, VoyageLaw2, VoyageLaw2Literal, VoyageLaw2Options, type VoyageLaw2OptionsType, VoyageLaw2Schema, VoyageMultilingual2, VoyageMultilingual2Literal, VoyageMultilingual2Options, type VoyageMultilingual2OptionsType, VoyageMultilingual2Schema, encodingFormat, inputType, maxTokens, mcp, mcpServers, outputDimension, outputDtype, stop, temperature, toolChoice, topK, topP, truncation };
|