illuma-agents 1.0.8 → 1.0.9
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/LICENSE +1 -5
- package/dist/cjs/common/enum.cjs +1 -2
- package/dist/cjs/common/enum.cjs.map +1 -1
- package/dist/cjs/instrumentation.cjs.map +1 -1
- package/dist/cjs/llm/anthropic/types.cjs.map +1 -1
- package/dist/cjs/llm/anthropic/utils/message_inputs.cjs +79 -2
- package/dist/cjs/llm/anthropic/utils/message_inputs.cjs.map +1 -1
- package/dist/cjs/llm/anthropic/utils/tools.cjs.map +1 -1
- package/dist/cjs/llm/bedrock/index.cjs +99 -0
- package/dist/cjs/llm/bedrock/index.cjs.map +1 -0
- package/dist/cjs/llm/fake.cjs.map +1 -1
- package/dist/cjs/llm/providers.cjs +13 -16
- package/dist/cjs/llm/providers.cjs.map +1 -1
- package/dist/cjs/llm/text.cjs.map +1 -1
- package/dist/cjs/messages/core.cjs +14 -14
- package/dist/cjs/messages/core.cjs.map +1 -1
- package/dist/cjs/messages/ids.cjs.map +1 -1
- package/dist/cjs/messages/prune.cjs.map +1 -1
- package/dist/cjs/run.cjs +10 -1
- package/dist/cjs/run.cjs.map +1 -1
- package/dist/cjs/splitStream.cjs.map +1 -1
- package/dist/cjs/stream.cjs +4 -1
- package/dist/cjs/stream.cjs.map +1 -1
- package/dist/cjs/tools/ToolNode.cjs +10 -1
- package/dist/cjs/tools/ToolNode.cjs.map +1 -1
- package/dist/cjs/tools/handlers.cjs +29 -25
- package/dist/cjs/tools/handlers.cjs.map +1 -1
- package/dist/cjs/tools/search/anthropic.cjs.map +1 -1
- package/dist/cjs/tools/search/content.cjs.map +1 -1
- package/dist/cjs/tools/search/firecrawl.cjs.map +1 -1
- package/dist/cjs/tools/search/format.cjs.map +1 -1
- package/dist/cjs/tools/search/highlights.cjs.map +1 -1
- package/dist/cjs/tools/search/rerankers.cjs.map +1 -1
- package/dist/cjs/tools/search/schema.cjs +25 -25
- package/dist/cjs/tools/search/schema.cjs.map +1 -1
- package/dist/cjs/tools/search/search.cjs +6 -1
- package/dist/cjs/tools/search/search.cjs.map +1 -1
- package/dist/cjs/tools/search/serper-scraper.cjs.map +1 -1
- package/dist/cjs/tools/search/tool.cjs +162 -35
- package/dist/cjs/tools/search/tool.cjs.map +1 -1
- package/dist/cjs/tools/search/utils.cjs.map +1 -1
- package/dist/cjs/utils/graph.cjs.map +1 -1
- package/dist/cjs/utils/llm.cjs +0 -1
- package/dist/cjs/utils/llm.cjs.map +1 -1
- package/dist/cjs/utils/misc.cjs.map +1 -1
- package/dist/cjs/utils/run.cjs.map +1 -1
- package/dist/cjs/utils/title.cjs +7 -7
- package/dist/cjs/utils/title.cjs.map +1 -1
- package/dist/esm/common/enum.mjs +1 -2
- package/dist/esm/common/enum.mjs.map +1 -1
- package/dist/esm/instrumentation.mjs.map +1 -1
- package/dist/esm/llm/anthropic/types.mjs.map +1 -1
- package/dist/esm/llm/anthropic/utils/message_inputs.mjs +79 -2
- package/dist/esm/llm/anthropic/utils/message_inputs.mjs.map +1 -1
- package/dist/esm/llm/anthropic/utils/tools.mjs.map +1 -1
- package/dist/esm/llm/bedrock/index.mjs +97 -0
- package/dist/esm/llm/bedrock/index.mjs.map +1 -0
- package/dist/esm/llm/fake.mjs.map +1 -1
- package/dist/esm/llm/providers.mjs +2 -5
- package/dist/esm/llm/providers.mjs.map +1 -1
- package/dist/esm/llm/text.mjs.map +1 -1
- package/dist/esm/messages/core.mjs +14 -14
- package/dist/esm/messages/core.mjs.map +1 -1
- package/dist/esm/messages/ids.mjs.map +1 -1
- package/dist/esm/messages/prune.mjs.map +1 -1
- package/dist/esm/run.mjs +10 -1
- package/dist/esm/run.mjs.map +1 -1
- package/dist/esm/splitStream.mjs.map +1 -1
- package/dist/esm/stream.mjs +4 -1
- package/dist/esm/stream.mjs.map +1 -1
- package/dist/esm/tools/ToolNode.mjs +10 -1
- package/dist/esm/tools/ToolNode.mjs.map +1 -1
- package/dist/esm/tools/handlers.mjs +30 -26
- package/dist/esm/tools/handlers.mjs.map +1 -1
- package/dist/esm/tools/search/anthropic.mjs.map +1 -1
- package/dist/esm/tools/search/content.mjs.map +1 -1
- package/dist/esm/tools/search/firecrawl.mjs.map +1 -1
- package/dist/esm/tools/search/format.mjs.map +1 -1
- package/dist/esm/tools/search/highlights.mjs.map +1 -1
- package/dist/esm/tools/search/rerankers.mjs.map +1 -1
- package/dist/esm/tools/search/schema.mjs +25 -25
- package/dist/esm/tools/search/schema.mjs.map +1 -1
- package/dist/esm/tools/search/search.mjs +6 -1
- package/dist/esm/tools/search/search.mjs.map +1 -1
- package/dist/esm/tools/search/serper-scraper.mjs.map +1 -1
- package/dist/esm/tools/search/tool.mjs +162 -35
- package/dist/esm/tools/search/tool.mjs.map +1 -1
- package/dist/esm/tools/search/utils.mjs.map +1 -1
- package/dist/esm/utils/graph.mjs.map +1 -1
- package/dist/esm/utils/llm.mjs +0 -1
- package/dist/esm/utils/llm.mjs.map +1 -1
- package/dist/esm/utils/misc.mjs.map +1 -1
- package/dist/esm/utils/run.mjs.map +1 -1
- package/dist/esm/utils/title.mjs +7 -7
- package/dist/esm/utils/title.mjs.map +1 -1
- package/dist/types/common/enum.d.ts +1 -2
- package/dist/types/llm/bedrock/index.d.ts +36 -0
- package/dist/types/tools/search/types.d.ts +2 -0
- package/dist/types/types/llm.d.ts +3 -8
- package/package.json +15 -11
- package/src/common/enum.ts +1 -2
- package/src/common/index.ts +1 -1
- package/src/instrumentation.ts +22 -22
- package/src/llm/anthropic/llm.spec.ts +1442 -1442
- package/src/llm/anthropic/types.ts +140 -140
- package/src/llm/anthropic/utils/message_inputs.ts +757 -660
- package/src/llm/anthropic/utils/output_parsers.ts +133 -133
- package/src/llm/anthropic/utils/tools.ts +29 -29
- package/src/llm/bedrock/index.ts +128 -0
- package/src/llm/fake.ts +133 -133
- package/src/llm/google/utils/tools.ts +160 -160
- package/src/llm/openai/types.ts +24 -24
- package/src/llm/openai/utils/isReasoningModel.test.ts +90 -90
- package/src/llm/providers.ts +2 -7
- package/src/llm/text.ts +94 -94
- package/src/messages/core.ts +463 -463
- package/src/messages/formatAgentMessages.tools.test.ts +400 -400
- package/src/messages/formatMessage.test.ts +693 -693
- package/src/messages/ids.ts +26 -26
- package/src/messages/prune.ts +567 -567
- package/src/messages/shiftIndexTokenCountMap.test.ts +81 -81
- package/src/mockStream.ts +98 -98
- package/src/prompts/collab.ts +5 -5
- package/src/prompts/index.ts +1 -1
- package/src/prompts/taskmanager.ts +61 -61
- package/src/run.ts +13 -4
- package/src/scripts/ant_web_search_edge_case.ts +162 -0
- package/src/scripts/ant_web_search_error_edge_case.ts +148 -0
- package/src/scripts/args.ts +48 -48
- package/src/scripts/caching.ts +123 -123
- package/src/scripts/code_exec_files.ts +193 -193
- package/src/scripts/empty_input.ts +137 -137
- package/src/scripts/image.ts +178 -178
- package/src/scripts/memory.ts +97 -97
- package/src/scripts/thinking.ts +149 -149
- package/src/specs/anthropic.simple.test.ts +67 -0
- package/src/specs/spec.utils.ts +3 -3
- package/src/specs/token-distribution-edge-case.test.ts +316 -316
- package/src/specs/tool-error.test.ts +193 -193
- package/src/splitStream.test.ts +691 -691
- package/src/splitStream.ts +234 -234
- package/src/stream.test.ts +94 -94
- package/src/stream.ts +4 -1
- package/src/tools/ToolNode.ts +12 -1
- package/src/tools/handlers.ts +32 -28
- package/src/tools/search/anthropic.ts +51 -51
- package/src/tools/search/content.test.ts +173 -173
- package/src/tools/search/content.ts +147 -147
- package/src/tools/search/direct-url.test.ts +530 -0
- package/src/tools/search/firecrawl.ts +210 -210
- package/src/tools/search/format.ts +250 -250
- package/src/tools/search/highlights.ts +320 -320
- package/src/tools/search/index.ts +2 -2
- package/src/tools/search/jina-reranker.test.ts +126 -126
- package/src/tools/search/output.md +2775 -2775
- package/src/tools/search/rerankers.ts +242 -242
- package/src/tools/search/schema.ts +63 -63
- package/src/tools/search/search.ts +766 -759
- package/src/tools/search/serper-scraper.ts +155 -155
- package/src/tools/search/test.html +883 -883
- package/src/tools/search/test.md +642 -642
- package/src/tools/search/test.ts +159 -159
- package/src/tools/search/tool.ts +619 -471
- package/src/tools/search/types.ts +689 -687
- package/src/tools/search/utils.ts +79 -79
- package/src/types/index.ts +6 -6
- package/src/types/llm.ts +2 -8
- package/src/utils/graph.ts +10 -10
- package/src/utils/llm.ts +26 -27
- package/src/utils/llmConfig.ts +5 -3
- package/src/utils/logging.ts +48 -48
- package/src/utils/misc.ts +57 -57
- package/src/utils/run.ts +100 -100
- package/src/utils/title.ts +165 -165
- package/dist/cjs/llm/ollama/index.cjs +0 -70
- package/dist/cjs/llm/ollama/index.cjs.map +0 -1
- package/dist/cjs/llm/ollama/utils.cjs +0 -158
- package/dist/cjs/llm/ollama/utils.cjs.map +0 -1
- package/dist/esm/llm/ollama/index.mjs +0 -68
- package/dist/esm/llm/ollama/index.mjs.map +0 -1
- package/dist/esm/llm/ollama/utils.mjs +0 -155
- package/dist/esm/llm/ollama/utils.mjs.map +0 -1
- package/dist/types/llm/ollama/index.d.ts +0 -8
- package/dist/types/llm/ollama/utils.d.ts +0 -7
- package/src/llm/ollama/index.ts +0 -92
- package/src/llm/ollama/utils.ts +0 -193
- package/src/proto/CollabGraph.ts +0 -269
- package/src/proto/TaskManager.ts +0 -243
- package/src/proto/collab.ts +0 -200
- package/src/proto/collab_design.ts +0 -184
- package/src/proto/collab_design_v2.ts +0 -224
- package/src/proto/collab_design_v3.ts +0 -255
- package/src/proto/collab_design_v4.ts +0 -220
- package/src/proto/collab_design_v5.ts +0 -251
- package/src/proto/collab_graph.ts +0 -181
- package/src/proto/collab_original.ts +0 -123
- package/src/proto/example.ts +0 -93
- package/src/proto/example_new.ts +0 -68
- package/src/proto/example_old.ts +0 -201
- package/src/proto/example_test.ts +0 -152
- package/src/proto/example_test_anthropic.ts +0 -100
- package/src/proto/log_stream.ts +0 -202
- package/src/proto/main_collab_community_event.ts +0 -133
- package/src/proto/main_collab_design_v2.ts +0 -96
- package/src/proto/main_collab_design_v4.ts +0 -100
- package/src/proto/main_collab_design_v5.ts +0 -135
- package/src/proto/main_collab_global_analysis.ts +0 -122
- package/src/proto/main_collab_hackathon_event.ts +0 -153
- package/src/proto/main_collab_space_mission.ts +0 -153
- package/src/proto/main_philosophy.ts +0 -210
- package/src/proto/original_script.ts +0 -126
- package/src/proto/standard.ts +0 -100
- package/src/proto/stream.ts +0 -56
- package/src/proto/tasks.ts +0 -118
- package/src/proto/tools/global_analysis_tools.ts +0 -86
- package/src/proto/tools/space_mission_tools.ts +0 -60
- package/src/proto/vertexai.ts +0 -54
|
@@ -1,133 +1,133 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
|
2
|
-
/* eslint-disable @typescript-eslint/no-empty-object-type */
|
|
3
|
-
import {
|
|
4
|
-
BaseLLMOutputParser,
|
|
5
|
-
OutputParserException,
|
|
6
|
-
} from '@langchain/core/output_parsers';
|
|
7
|
-
import { JsonOutputKeyToolsParserParamsInterop } from '@langchain/core/output_parsers/openai_tools';
|
|
8
|
-
import { ChatGeneration } from '@langchain/core/outputs';
|
|
9
|
-
import { ToolCall } from '@langchain/core/messages/tool';
|
|
10
|
-
import {
|
|
11
|
-
interopSafeParseAsync,
|
|
12
|
-
InteropZodType,
|
|
13
|
-
} from '@langchain/core/utils/types';
|
|
14
|
-
|
|
15
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
16
|
-
interface AnthropicToolsOutputParserParams<T extends Record<string, any>>
|
|
17
|
-
extends JsonOutputKeyToolsParserParamsInterop<T> {}
|
|
18
|
-
|
|
19
|
-
export class AnthropicToolsOutputParser<
|
|
20
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
21
|
-
T extends Record<string, any> = Record<string, any>,
|
|
22
|
-
> extends BaseLLMOutputParser<T> {
|
|
23
|
-
static lc_name() {
|
|
24
|
-
return 'AnthropicToolsOutputParser';
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
lc_namespace = ['langchain', 'anthropic', 'output_parsers'];
|
|
28
|
-
|
|
29
|
-
returnId = false;
|
|
30
|
-
|
|
31
|
-
/** The type of tool calls to return. */
|
|
32
|
-
keyName: string;
|
|
33
|
-
|
|
34
|
-
/** Whether to return only the first tool call. */
|
|
35
|
-
returnSingle = false;
|
|
36
|
-
|
|
37
|
-
zodSchema?: InteropZodType<T>;
|
|
38
|
-
|
|
39
|
-
constructor(params: AnthropicToolsOutputParserParams<T>) {
|
|
40
|
-
super(params);
|
|
41
|
-
this.keyName = params.keyName;
|
|
42
|
-
this.returnSingle = params.returnSingle ?? this.returnSingle;
|
|
43
|
-
this.zodSchema = params.zodSchema;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
protected async _validateResult(result: unknown): Promise<T> {
|
|
47
|
-
let parsedResult = result;
|
|
48
|
-
if (typeof result === 'string') {
|
|
49
|
-
try {
|
|
50
|
-
parsedResult = JSON.parse(result);
|
|
51
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
52
|
-
} catch (e: any) {
|
|
53
|
-
throw new OutputParserException(
|
|
54
|
-
`Failed to parse. Text: "${JSON.stringify(
|
|
55
|
-
result,
|
|
56
|
-
null,
|
|
57
|
-
2
|
|
58
|
-
)}". Error: ${JSON.stringify(e.message)}`,
|
|
59
|
-
result
|
|
60
|
-
);
|
|
61
|
-
}
|
|
62
|
-
} else {
|
|
63
|
-
parsedResult = result;
|
|
64
|
-
}
|
|
65
|
-
if (this.zodSchema === undefined) {
|
|
66
|
-
return parsedResult as T;
|
|
67
|
-
}
|
|
68
|
-
const zodParsedResult = await interopSafeParseAsync(
|
|
69
|
-
this.zodSchema,
|
|
70
|
-
parsedResult
|
|
71
|
-
);
|
|
72
|
-
if (zodParsedResult.success) {
|
|
73
|
-
return zodParsedResult.data;
|
|
74
|
-
} else {
|
|
75
|
-
throw new OutputParserException(
|
|
76
|
-
`Failed to parse. Text: "${JSON.stringify(
|
|
77
|
-
result,
|
|
78
|
-
null,
|
|
79
|
-
2
|
|
80
|
-
)}". Error: ${JSON.stringify(zodParsedResult.error.issues)}`,
|
|
81
|
-
JSON.stringify(parsedResult, null, 2)
|
|
82
|
-
);
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
async parseResult(generations: ChatGeneration[]): Promise<T> {
|
|
87
|
-
const tools = generations.flatMap((generation) => {
|
|
88
|
-
const { message } = generation;
|
|
89
|
-
if (!Array.isArray(message.content)) {
|
|
90
|
-
return [];
|
|
91
|
-
}
|
|
92
|
-
const tool = extractToolCalls(message.content)[0];
|
|
93
|
-
return tool;
|
|
94
|
-
});
|
|
95
|
-
if (tools[0] === undefined) {
|
|
96
|
-
throw new Error(
|
|
97
|
-
'No parseable tool calls provided to AnthropicToolsOutputParser.'
|
|
98
|
-
);
|
|
99
|
-
}
|
|
100
|
-
const [tool] = tools;
|
|
101
|
-
const validatedResult = await this._validateResult(tool.args);
|
|
102
|
-
return validatedResult;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
107
|
-
export function extractToolCalls(content: Record<string, any>[]) {
|
|
108
|
-
const toolCalls: ToolCall[] = [];
|
|
109
|
-
|
|
110
|
-
for (const block of content) {
|
|
111
|
-
if (block.type === 'tool_use') {
|
|
112
|
-
toolCalls.push({
|
|
113
|
-
name: block.name,
|
|
114
|
-
args: block.input,
|
|
115
|
-
id: block.id,
|
|
116
|
-
type: 'tool_call',
|
|
117
|
-
});
|
|
118
|
-
} else if (
|
|
119
|
-
block.type === 'server_tool_use' &&
|
|
120
|
-
block.name === 'web_search'
|
|
121
|
-
) {
|
|
122
|
-
// Handle Anthropic built-in web search tool
|
|
123
|
-
toolCalls.push({
|
|
124
|
-
name: block.name,
|
|
125
|
-
args: block.input,
|
|
126
|
-
id: block.id,
|
|
127
|
-
type: 'tool_call',
|
|
128
|
-
});
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
return toolCalls;
|
|
133
|
-
}
|
|
1
|
+
/* eslint-disable @typescript-eslint/explicit-function-return-type */
|
|
2
|
+
/* eslint-disable @typescript-eslint/no-empty-object-type */
|
|
3
|
+
import {
|
|
4
|
+
BaseLLMOutputParser,
|
|
5
|
+
OutputParserException,
|
|
6
|
+
} from '@langchain/core/output_parsers';
|
|
7
|
+
import { JsonOutputKeyToolsParserParamsInterop } from '@langchain/core/output_parsers/openai_tools';
|
|
8
|
+
import { ChatGeneration } from '@langchain/core/outputs';
|
|
9
|
+
import { ToolCall } from '@langchain/core/messages/tool';
|
|
10
|
+
import {
|
|
11
|
+
interopSafeParseAsync,
|
|
12
|
+
InteropZodType,
|
|
13
|
+
} from '@langchain/core/utils/types';
|
|
14
|
+
|
|
15
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
16
|
+
interface AnthropicToolsOutputParserParams<T extends Record<string, any>>
|
|
17
|
+
extends JsonOutputKeyToolsParserParamsInterop<T> {}
|
|
18
|
+
|
|
19
|
+
export class AnthropicToolsOutputParser<
|
|
20
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
21
|
+
T extends Record<string, any> = Record<string, any>,
|
|
22
|
+
> extends BaseLLMOutputParser<T> {
|
|
23
|
+
static lc_name() {
|
|
24
|
+
return 'AnthropicToolsOutputParser';
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
lc_namespace = ['langchain', 'anthropic', 'output_parsers'];
|
|
28
|
+
|
|
29
|
+
returnId = false;
|
|
30
|
+
|
|
31
|
+
/** The type of tool calls to return. */
|
|
32
|
+
keyName: string;
|
|
33
|
+
|
|
34
|
+
/** Whether to return only the first tool call. */
|
|
35
|
+
returnSingle = false;
|
|
36
|
+
|
|
37
|
+
zodSchema?: InteropZodType<T>;
|
|
38
|
+
|
|
39
|
+
constructor(params: AnthropicToolsOutputParserParams<T>) {
|
|
40
|
+
super(params);
|
|
41
|
+
this.keyName = params.keyName;
|
|
42
|
+
this.returnSingle = params.returnSingle ?? this.returnSingle;
|
|
43
|
+
this.zodSchema = params.zodSchema;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
protected async _validateResult(result: unknown): Promise<T> {
|
|
47
|
+
let parsedResult = result;
|
|
48
|
+
if (typeof result === 'string') {
|
|
49
|
+
try {
|
|
50
|
+
parsedResult = JSON.parse(result);
|
|
51
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
52
|
+
} catch (e: any) {
|
|
53
|
+
throw new OutputParserException(
|
|
54
|
+
`Failed to parse. Text: "${JSON.stringify(
|
|
55
|
+
result,
|
|
56
|
+
null,
|
|
57
|
+
2
|
|
58
|
+
)}". Error: ${JSON.stringify(e.message)}`,
|
|
59
|
+
result
|
|
60
|
+
);
|
|
61
|
+
}
|
|
62
|
+
} else {
|
|
63
|
+
parsedResult = result;
|
|
64
|
+
}
|
|
65
|
+
if (this.zodSchema === undefined) {
|
|
66
|
+
return parsedResult as T;
|
|
67
|
+
}
|
|
68
|
+
const zodParsedResult = await interopSafeParseAsync(
|
|
69
|
+
this.zodSchema,
|
|
70
|
+
parsedResult
|
|
71
|
+
);
|
|
72
|
+
if (zodParsedResult.success) {
|
|
73
|
+
return zodParsedResult.data;
|
|
74
|
+
} else {
|
|
75
|
+
throw new OutputParserException(
|
|
76
|
+
`Failed to parse. Text: "${JSON.stringify(
|
|
77
|
+
result,
|
|
78
|
+
null,
|
|
79
|
+
2
|
|
80
|
+
)}". Error: ${JSON.stringify(zodParsedResult.error.issues)}`,
|
|
81
|
+
JSON.stringify(parsedResult, null, 2)
|
|
82
|
+
);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
async parseResult(generations: ChatGeneration[]): Promise<T> {
|
|
87
|
+
const tools = generations.flatMap((generation) => {
|
|
88
|
+
const { message } = generation;
|
|
89
|
+
if (!Array.isArray(message.content)) {
|
|
90
|
+
return [];
|
|
91
|
+
}
|
|
92
|
+
const tool = extractToolCalls(message.content)[0];
|
|
93
|
+
return tool;
|
|
94
|
+
});
|
|
95
|
+
if (tools[0] === undefined) {
|
|
96
|
+
throw new Error(
|
|
97
|
+
'No parseable tool calls provided to AnthropicToolsOutputParser.'
|
|
98
|
+
);
|
|
99
|
+
}
|
|
100
|
+
const [tool] = tools;
|
|
101
|
+
const validatedResult = await this._validateResult(tool.args);
|
|
102
|
+
return validatedResult;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
107
|
+
export function extractToolCalls(content: Record<string, any>[]) {
|
|
108
|
+
const toolCalls: ToolCall[] = [];
|
|
109
|
+
|
|
110
|
+
for (const block of content) {
|
|
111
|
+
if (block.type === 'tool_use') {
|
|
112
|
+
toolCalls.push({
|
|
113
|
+
name: block.name,
|
|
114
|
+
args: block.input,
|
|
115
|
+
id: block.id,
|
|
116
|
+
type: 'tool_call',
|
|
117
|
+
});
|
|
118
|
+
} else if (
|
|
119
|
+
block.type === 'server_tool_use' &&
|
|
120
|
+
block.name === 'web_search'
|
|
121
|
+
) {
|
|
122
|
+
// Handle Anthropic built-in web search tool
|
|
123
|
+
toolCalls.push({
|
|
124
|
+
name: block.name,
|
|
125
|
+
args: block.input,
|
|
126
|
+
id: block.id,
|
|
127
|
+
type: 'tool_call',
|
|
128
|
+
});
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
return toolCalls;
|
|
133
|
+
}
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import type { Anthropic } from '@anthropic-ai/sdk';
|
|
2
|
-
import { AnthropicToolChoice } from '../types.js';
|
|
3
|
-
|
|
4
|
-
export function handleToolChoice(
|
|
5
|
-
toolChoice?: AnthropicToolChoice
|
|
6
|
-
):
|
|
7
|
-
| Anthropic.Messages.ToolChoiceAuto
|
|
8
|
-
| Anthropic.Messages.ToolChoiceAny
|
|
9
|
-
| Anthropic.Messages.ToolChoiceTool
|
|
10
|
-
| undefined {
|
|
11
|
-
if (toolChoice == null) {
|
|
12
|
-
return undefined;
|
|
13
|
-
} else if (toolChoice === 'any') {
|
|
14
|
-
return {
|
|
15
|
-
type: 'any',
|
|
16
|
-
};
|
|
17
|
-
} else if (toolChoice === 'auto') {
|
|
18
|
-
return {
|
|
19
|
-
type: 'auto',
|
|
20
|
-
};
|
|
21
|
-
} else if (typeof toolChoice === 'string') {
|
|
22
|
-
return {
|
|
23
|
-
type: 'tool',
|
|
24
|
-
name: toolChoice,
|
|
25
|
-
};
|
|
26
|
-
} else {
|
|
27
|
-
return toolChoice;
|
|
28
|
-
}
|
|
29
|
-
}
|
|
1
|
+
import type { Anthropic } from '@anthropic-ai/sdk';
|
|
2
|
+
import { AnthropicToolChoice } from '../types.js';
|
|
3
|
+
|
|
4
|
+
export function handleToolChoice(
|
|
5
|
+
toolChoice?: AnthropicToolChoice
|
|
6
|
+
):
|
|
7
|
+
| Anthropic.Messages.ToolChoiceAuto
|
|
8
|
+
| Anthropic.Messages.ToolChoiceAny
|
|
9
|
+
| Anthropic.Messages.ToolChoiceTool
|
|
10
|
+
| undefined {
|
|
11
|
+
if (toolChoice == null) {
|
|
12
|
+
return undefined;
|
|
13
|
+
} else if (toolChoice === 'any') {
|
|
14
|
+
return {
|
|
15
|
+
type: 'any',
|
|
16
|
+
};
|
|
17
|
+
} else if (toolChoice === 'auto') {
|
|
18
|
+
return {
|
|
19
|
+
type: 'auto',
|
|
20
|
+
};
|
|
21
|
+
} else if (typeof toolChoice === 'string') {
|
|
22
|
+
return {
|
|
23
|
+
type: 'tool',
|
|
24
|
+
name: toolChoice,
|
|
25
|
+
};
|
|
26
|
+
} else {
|
|
27
|
+
return toolChoice;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Optimized ChatBedrockConverse wrapper that fixes contentBlockIndex conflicts
|
|
3
|
+
*
|
|
4
|
+
* Bedrock sends the same contentBlockIndex for both text and tool_use content blocks,
|
|
5
|
+
* causing LangChain's merge logic to fail with "field[contentBlockIndex] already exists"
|
|
6
|
+
* errors. This wrapper simply strips contentBlockIndex from response_metadata to avoid
|
|
7
|
+
* the conflict.
|
|
8
|
+
*
|
|
9
|
+
* The contentBlockIndex field is only used internally by Bedrock's streaming protocol
|
|
10
|
+
* and isn't needed by application logic - the index field on tool_call_chunks serves
|
|
11
|
+
* the purpose of tracking tool call ordering.
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
import { ChatBedrockConverse } from '@langchain/aws';
|
|
15
|
+
import type { ChatBedrockConverseInput } from '@langchain/aws';
|
|
16
|
+
import { AIMessageChunk } from '@langchain/core/messages';
|
|
17
|
+
import type { BaseMessage } from '@langchain/core/messages';
|
|
18
|
+
import { ChatGenerationChunk } from '@langchain/core/outputs';
|
|
19
|
+
import type { CallbackManagerForLLMRun } from '@langchain/core/callbacks/manager';
|
|
20
|
+
|
|
21
|
+
export class CustomChatBedrockConverse extends ChatBedrockConverse {
|
|
22
|
+
constructor(fields?: ChatBedrockConverseInput) {
|
|
23
|
+
super(fields);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
static lc_name(): string {
|
|
27
|
+
return 'IllumaBedrockConverse';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Override _streamResponseChunks to strip contentBlockIndex from response_metadata
|
|
32
|
+
* This prevents LangChain's merge conflicts when the same index is used for
|
|
33
|
+
* different content types (text vs tool calls)
|
|
34
|
+
*/
|
|
35
|
+
async *_streamResponseChunks(
|
|
36
|
+
messages: BaseMessage[],
|
|
37
|
+
options: this['ParsedCallOptions'],
|
|
38
|
+
runManager?: CallbackManagerForLLMRun
|
|
39
|
+
): AsyncGenerator<ChatGenerationChunk> {
|
|
40
|
+
const baseStream = super._streamResponseChunks(
|
|
41
|
+
messages,
|
|
42
|
+
options,
|
|
43
|
+
runManager
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
for await (const chunk of baseStream) {
|
|
47
|
+
// Only process if we have response_metadata
|
|
48
|
+
if (
|
|
49
|
+
chunk.message instanceof AIMessageChunk &&
|
|
50
|
+
(chunk.message as Partial<AIMessageChunk>).response_metadata &&
|
|
51
|
+
typeof chunk.message.response_metadata === 'object'
|
|
52
|
+
) {
|
|
53
|
+
// Check if contentBlockIndex exists anywhere in response_metadata (top level or nested)
|
|
54
|
+
const hasContentBlockIndex = this.hasContentBlockIndex(
|
|
55
|
+
chunk.message.response_metadata
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
if (hasContentBlockIndex) {
|
|
59
|
+
const cleanedMetadata = this.removeContentBlockIndex(
|
|
60
|
+
chunk.message.response_metadata
|
|
61
|
+
) as Record<string, unknown>;
|
|
62
|
+
|
|
63
|
+
yield new ChatGenerationChunk({
|
|
64
|
+
text: chunk.text,
|
|
65
|
+
message: new AIMessageChunk({
|
|
66
|
+
...chunk.message,
|
|
67
|
+
response_metadata: cleanedMetadata,
|
|
68
|
+
}),
|
|
69
|
+
generationInfo: chunk.generationInfo,
|
|
70
|
+
});
|
|
71
|
+
continue;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
yield chunk;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Check if contentBlockIndex exists at any level in the object
|
|
81
|
+
*/
|
|
82
|
+
private hasContentBlockIndex(obj: unknown): boolean {
|
|
83
|
+
if (obj === null || obj === undefined || typeof obj !== 'object') {
|
|
84
|
+
return false;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
if ('contentBlockIndex' in obj) {
|
|
88
|
+
return true;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
for (const value of Object.values(obj)) {
|
|
92
|
+
if (typeof value === 'object' && value !== null) {
|
|
93
|
+
if (this.hasContentBlockIndex(value)) {
|
|
94
|
+
return true;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
return false;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Recursively remove contentBlockIndex from all levels of an object
|
|
104
|
+
*/
|
|
105
|
+
private removeContentBlockIndex(obj: unknown): unknown {
|
|
106
|
+
if (obj === null || obj === undefined) {
|
|
107
|
+
return obj;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
if (Array.isArray(obj)) {
|
|
111
|
+
return obj.map((item) => this.removeContentBlockIndex(item));
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
if (typeof obj === 'object') {
|
|
115
|
+
const cleaned: Record<string, unknown> = {};
|
|
116
|
+
for (const [key, value] of Object.entries(obj)) {
|
|
117
|
+
if (key !== 'contentBlockIndex') {
|
|
118
|
+
cleaned[key] = this.removeContentBlockIndex(value);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
return cleaned;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
return obj;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
export type { ChatBedrockConverseInput };
|