@langchain/anthropic 0.1.15 → 0.1.17-rc.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/dist/chat_models.cjs +4 -6
- package/dist/chat_models.d.ts +10 -1
- package/dist/chat_models.js +4 -6
- package/dist/load/dynamic_import_map.cjs +8 -0
- package/dist/load/dynamic_import_map.d.ts +1 -0
- package/dist/load/dynamic_import_map.js +4 -0
- package/dist/load/import_constants.cjs +5 -0
- package/dist/load/import_constants.d.ts +1 -0
- package/dist/load/import_constants.js +2 -0
- package/dist/load/import_map.cjs +29 -0
- package/dist/load/import_map.d.ts +2 -0
- package/dist/load/import_map.js +3 -0
- package/dist/load/import_type.cjs +3 -0
- package/dist/load/import_type.d.ts +5 -0
- package/dist/load/import_type.js +2 -0
- package/dist/load/index.cjs +53 -0
- package/dist/load/index.d.ts +14 -0
- package/dist/load/index.js +25 -0
- package/dist/load/map_keys.cjs +2 -0
- package/dist/load/map_keys.d.ts +3 -0
- package/dist/load/map_keys.js +1 -0
- package/dist/load/serializable.cjs +17 -0
- package/dist/load/serializable.d.ts +1 -0
- package/dist/load/serializable.js +1 -0
- package/dist/tests/chat_models.int.test.js +2 -1
- package/package.json +3 -3
package/dist/chat_models.cjs
CHANGED
|
@@ -459,7 +459,7 @@ class ChatAnthropicMessages extends chat_models_1.BaseChatModel {
|
|
|
459
459
|
const params = this.invocationParams(options);
|
|
460
460
|
const formattedMessages = _formatMessagesForAnthropic(messages);
|
|
461
461
|
if (options.tools !== undefined && options.tools.length > 0) {
|
|
462
|
-
const generations = await this._generateNonStreaming(messages, params, {
|
|
462
|
+
const { generations } = await this._generateNonStreaming(messages, params, {
|
|
463
463
|
signal: options.signal,
|
|
464
464
|
});
|
|
465
465
|
const result = generations[0].message;
|
|
@@ -562,7 +562,8 @@ class ChatAnthropicMessages extends chat_models_1.BaseChatModel {
|
|
|
562
562
|
}, options);
|
|
563
563
|
const { content, ...additionalKwargs } = response;
|
|
564
564
|
const generations = anthropicResponseToChatMessages(content, additionalKwargs);
|
|
565
|
-
|
|
565
|
+
const { role: _role, type: _type, ...rest } = additionalKwargs;
|
|
566
|
+
return { generations, llmOutput: rest };
|
|
566
567
|
}
|
|
567
568
|
/** @ignore */
|
|
568
569
|
async _generate(messages, options, runManager) {
|
|
@@ -594,12 +595,9 @@ class ChatAnthropicMessages extends chat_models_1.BaseChatModel {
|
|
|
594
595
|
};
|
|
595
596
|
}
|
|
596
597
|
else {
|
|
597
|
-
|
|
598
|
+
return this._generateNonStreaming(messages, params, {
|
|
598
599
|
signal: options.signal,
|
|
599
600
|
});
|
|
600
|
-
return {
|
|
601
|
-
generations,
|
|
602
|
-
};
|
|
603
601
|
}
|
|
604
602
|
}
|
|
605
603
|
/**
|
package/dist/chat_models.d.ts
CHANGED
|
@@ -176,7 +176,16 @@ export declare class ChatAnthropicMessages<CallOptions extends ChatAnthropicCall
|
|
|
176
176
|
};
|
|
177
177
|
_streamResponseChunks(messages: BaseMessage[], options: this["ParsedCallOptions"], runManager?: CallbackManagerForLLMRun): AsyncGenerator<ChatGenerationChunk>;
|
|
178
178
|
/** @ignore */
|
|
179
|
-
_generateNonStreaming(messages: BaseMessage[], params: Omit<Anthropic.Messages.MessageCreateParamsNonStreaming | Anthropic.Messages.MessageCreateParamsStreaming, "messages"> & Kwargs, requestOptions: AnthropicRequestOptions): Promise<
|
|
179
|
+
_generateNonStreaming(messages: BaseMessage[], params: Omit<Anthropic.Messages.MessageCreateParamsNonStreaming | Anthropic.Messages.MessageCreateParamsStreaming, "messages"> & Kwargs, requestOptions: AnthropicRequestOptions): Promise<{
|
|
180
|
+
generations: ChatGeneration[];
|
|
181
|
+
llmOutput: {
|
|
182
|
+
id: string;
|
|
183
|
+
model: string;
|
|
184
|
+
stop_reason: "max_tokens" | "stop_sequence" | "end_turn" | null;
|
|
185
|
+
stop_sequence: string | null;
|
|
186
|
+
usage: Anthropic.Messages.Usage;
|
|
187
|
+
};
|
|
188
|
+
}>;
|
|
180
189
|
/** @ignore */
|
|
181
190
|
_generate(messages: BaseMessage[], options: this["ParsedCallOptions"], runManager?: CallbackManagerForLLMRun): Promise<ChatResult>;
|
|
182
191
|
/**
|
package/dist/chat_models.js
CHANGED
|
@@ -455,7 +455,7 @@ export class ChatAnthropicMessages extends BaseChatModel {
|
|
|
455
455
|
const params = this.invocationParams(options);
|
|
456
456
|
const formattedMessages = _formatMessagesForAnthropic(messages);
|
|
457
457
|
if (options.tools !== undefined && options.tools.length > 0) {
|
|
458
|
-
const generations = await this._generateNonStreaming(messages, params, {
|
|
458
|
+
const { generations } = await this._generateNonStreaming(messages, params, {
|
|
459
459
|
signal: options.signal,
|
|
460
460
|
});
|
|
461
461
|
const result = generations[0].message;
|
|
@@ -558,7 +558,8 @@ export class ChatAnthropicMessages extends BaseChatModel {
|
|
|
558
558
|
}, options);
|
|
559
559
|
const { content, ...additionalKwargs } = response;
|
|
560
560
|
const generations = anthropicResponseToChatMessages(content, additionalKwargs);
|
|
561
|
-
|
|
561
|
+
const { role: _role, type: _type, ...rest } = additionalKwargs;
|
|
562
|
+
return { generations, llmOutput: rest };
|
|
562
563
|
}
|
|
563
564
|
/** @ignore */
|
|
564
565
|
async _generate(messages, options, runManager) {
|
|
@@ -590,12 +591,9 @@ export class ChatAnthropicMessages extends BaseChatModel {
|
|
|
590
591
|
};
|
|
591
592
|
}
|
|
592
593
|
else {
|
|
593
|
-
|
|
594
|
+
return this._generateNonStreaming(messages, params, {
|
|
594
595
|
signal: options.signal,
|
|
595
596
|
});
|
|
596
|
-
return {
|
|
597
|
-
generations,
|
|
598
|
-
};
|
|
599
597
|
}
|
|
600
598
|
}
|
|
601
599
|
/**
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Auto-generated by `scripts/create-entrypoints.js`. Do not edit manually.
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.getDynamicImportMap = void 0;
|
|
5
|
+
async function getDynamicImportMap() {
|
|
6
|
+
return {};
|
|
7
|
+
}
|
|
8
|
+
exports.getDynamicImportMap = getDynamicImportMap;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getDynamicImportMap(): Promise<{}>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const optionalImportEntrypoints: string[];
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// Auto-generated by `scripts/create-entrypoints.js`. Do not edit manually.
|
|
3
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
4
|
+
if (k2 === undefined) k2 = k;
|
|
5
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
6
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
7
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
8
|
+
}
|
|
9
|
+
Object.defineProperty(o, k2, desc);
|
|
10
|
+
}) : (function(o, m, k, k2) {
|
|
11
|
+
if (k2 === undefined) k2 = k;
|
|
12
|
+
o[k2] = m[k];
|
|
13
|
+
}));
|
|
14
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
15
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
16
|
+
}) : function(o, v) {
|
|
17
|
+
o["default"] = v;
|
|
18
|
+
});
|
|
19
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
20
|
+
if (mod && mod.__esModule) return mod;
|
|
21
|
+
var result = {};
|
|
22
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
23
|
+
__setModuleDefault(result, mod);
|
|
24
|
+
return result;
|
|
25
|
+
};
|
|
26
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
27
|
+
exports.experimental = exports.index = void 0;
|
|
28
|
+
exports.index = __importStar(require("../index.cjs"));
|
|
29
|
+
exports.experimental = __importStar(require("../experimental/index.cjs"));
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.load = exports.importMap = exports.optionalImportEntrypoints = void 0;
|
|
27
|
+
const load_1 = require("@langchain/core/load");
|
|
28
|
+
const importMap = __importStar(require("./import_map.cjs"));
|
|
29
|
+
exports.importMap = importMap;
|
|
30
|
+
const import_constants_js_1 = require("./import_constants.cjs");
|
|
31
|
+
Object.defineProperty(exports, "optionalImportEntrypoints", { enumerable: true, get: function () { return import_constants_js_1.optionalImportEntrypoints; } });
|
|
32
|
+
/**
|
|
33
|
+
* Load a LangChain module from a serialized text representation.
|
|
34
|
+
* NOTE: This functionality is currently in beta.
|
|
35
|
+
* Loaded classes may change independently of semver.
|
|
36
|
+
* @param text Serialized text representation of the module.
|
|
37
|
+
* @param secretsMap
|
|
38
|
+
* @param optionalImportsMap
|
|
39
|
+
* @returns A loaded instance of a LangChain module.
|
|
40
|
+
*/
|
|
41
|
+
async function load(text,
|
|
42
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
43
|
+
secretsMap = {},
|
|
44
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
45
|
+
optionalImportsMap = {}) {
|
|
46
|
+
return (0, load_1.load)(text, {
|
|
47
|
+
secretsMap,
|
|
48
|
+
optionalImportsMap,
|
|
49
|
+
optionalImportEntrypoints: import_constants_js_1.optionalImportEntrypoints,
|
|
50
|
+
importMap,
|
|
51
|
+
});
|
|
52
|
+
}
|
|
53
|
+
exports.load = load;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { type OptionalImportMap, type SecretMap } from "./import_type.js";
|
|
2
|
+
import * as importMap from "./import_map.js";
|
|
3
|
+
import { optionalImportEntrypoints } from "./import_constants.js";
|
|
4
|
+
export { optionalImportEntrypoints, importMap, type OptionalImportMap, type SecretMap, };
|
|
5
|
+
/**
|
|
6
|
+
* Load a LangChain module from a serialized text representation.
|
|
7
|
+
* NOTE: This functionality is currently in beta.
|
|
8
|
+
* Loaded classes may change independently of semver.
|
|
9
|
+
* @param text Serialized text representation of the module.
|
|
10
|
+
* @param secretsMap
|
|
11
|
+
* @param optionalImportsMap
|
|
12
|
+
* @returns A loaded instance of a LangChain module.
|
|
13
|
+
*/
|
|
14
|
+
export declare function load<T>(text: string, secretsMap?: Record<string, any>, optionalImportsMap?: OptionalImportMap & Record<string, any>): Promise<T>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { load as coreLoad } from "@langchain/core/load";
|
|
2
|
+
import * as importMap from "./import_map.js";
|
|
3
|
+
import { optionalImportEntrypoints } from "./import_constants.js";
|
|
4
|
+
export { optionalImportEntrypoints, importMap, };
|
|
5
|
+
/**
|
|
6
|
+
* Load a LangChain module from a serialized text representation.
|
|
7
|
+
* NOTE: This functionality is currently in beta.
|
|
8
|
+
* Loaded classes may change independently of semver.
|
|
9
|
+
* @param text Serialized text representation of the module.
|
|
10
|
+
* @param secretsMap
|
|
11
|
+
* @param optionalImportsMap
|
|
12
|
+
* @returns A loaded instance of a LangChain module.
|
|
13
|
+
*/
|
|
14
|
+
export async function load(text,
|
|
15
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
16
|
+
secretsMap = {},
|
|
17
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
18
|
+
optionalImportsMap = {}) {
|
|
19
|
+
return coreLoad(text, {
|
|
20
|
+
secretsMap,
|
|
21
|
+
optionalImportsMap,
|
|
22
|
+
optionalImportEntrypoints,
|
|
23
|
+
importMap,
|
|
24
|
+
});
|
|
25
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("@langchain/core/load/serializable"), exports);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@langchain/core/load/serializable";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "@langchain/core/load/serializable";
|
|
@@ -5,7 +5,7 @@ import { ChatPromptValue } from "@langchain/core/prompt_values";
|
|
|
5
5
|
import { PromptTemplate, ChatPromptTemplate, AIMessagePromptTemplate, HumanMessagePromptTemplate, SystemMessagePromptTemplate, } from "@langchain/core/prompts";
|
|
6
6
|
import { CallbackManager } from "@langchain/core/callbacks/manager";
|
|
7
7
|
import { ChatAnthropic } from "../chat_models.js";
|
|
8
|
-
test
|
|
8
|
+
test("Test ChatAnthropic", async () => {
|
|
9
9
|
const chat = new ChatAnthropic({
|
|
10
10
|
modelName: "claude-3-sonnet-20240229",
|
|
11
11
|
maxRetries: 0,
|
|
@@ -13,6 +13,7 @@ test.skip("Test ChatAnthropic", async () => {
|
|
|
13
13
|
const message = new HumanMessage("Hello!");
|
|
14
14
|
const res = await chat.invoke([message]);
|
|
15
15
|
console.log({ res });
|
|
16
|
+
expect(res.response_metadata.usage).toBeDefined();
|
|
16
17
|
});
|
|
17
18
|
test("Test ChatAnthropic Generate", async () => {
|
|
18
19
|
const chat = new ChatAnthropic({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@langchain/anthropic",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17-rc.0",
|
|
4
4
|
"description": "Anthropic integrations for LangChain.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"lint:dpdm": "dpdm --exit-code circular:1 --no-warning --no-tree src/*.ts src/**/*.ts",
|
|
25
25
|
"lint": "yarn lint:eslint && yarn lint:dpdm",
|
|
26
26
|
"lint:fix": "yarn lint:eslint --fix && yarn lint:dpdm",
|
|
27
|
-
"clean": "rimraf .turbo/ dist/ && NODE_OPTIONS=--max-old-space-size=4096 yarn lc-build --config ./langchain.config.js --create-entrypoints --pre",
|
|
27
|
+
"clean": "rimraf .turbo/ dist/ && NODE_OPTIONS=--max-old-space-size=4096 yarn lc-build --config ./langchain.config.js --create-entrypoints --pre --gen-maps",
|
|
28
28
|
"prepack": "yarn build",
|
|
29
29
|
"test": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --testPathIgnorePatterns=\\.int\\.test.ts --testTimeout 30000 --maxWorkers=50%",
|
|
30
30
|
"test:watch": "yarn run build:deps && NODE_OPTIONS=--experimental-vm-modules jest --watch --testPathIgnorePatterns=\\.int\\.test.ts",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@jest/globals": "^29.5.0",
|
|
50
|
-
"@langchain/community": "workspace
|
|
50
|
+
"@langchain/community": "workspace:*",
|
|
51
51
|
"@langchain/scripts": "~0.0",
|
|
52
52
|
"@swc/core": "^1.3.90",
|
|
53
53
|
"@swc/jest": "^0.2.29",
|