-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
Copy pathtool_calling.ts
477 lines (452 loc) Β· 15.1 KB
/
tool_calling.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
import { XMLParser } from "fast-xml-parser";
import {
AIMessage,
BaseMessage,
BaseMessageLike,
SystemMessage,
coerceMessageLikeToMessage,
} from "@langchain/core/messages";
import type {
ChatGenerationChunk,
ChatResult,
LLMResult,
} from "@langchain/core/outputs";
import {
BaseChatModel,
BaseChatModelParams,
} from "@langchain/core/language_models/chat_models";
import {
CallbackManagerForLLMRun,
Callbacks,
} from "@langchain/core/callbacks/manager";
import { BasePromptTemplate } from "@langchain/core/prompts";
import type {
BaseLanguageModelCallOptions,
BaseLanguageModelInput,
StructuredOutputMethodParams,
StructuredOutputMethodOptions,
ToolDefinition,
FunctionDefinition,
} from "@langchain/core/language_models/base";
import {
Runnable,
RunnablePassthrough,
RunnableSequence,
} from "@langchain/core/runnables";
import { JsonOutputKeyToolsParser } from "@langchain/core/output_parsers/openai_tools";
import type { BaseLLMOutputParser } from "@langchain/core/output_parsers";
import { JsonSchema7ObjectType, zodToJsonSchema } from "zod-to-json-schema";
import { z } from "zod";
import { ChatAnthropic, type AnthropicInput } from "../chat_models.js";
import {
DEFAULT_TOOL_SYSTEM_PROMPT,
ToolInvocation,
formatAsXMLRepresentation,
fixArrayXMLParameters,
} from "./utils/tool_calling.js";
export interface ChatAnthropicToolsCallOptions
extends BaseLanguageModelCallOptions {
tools?: ToolDefinition[];
tool_choice?:
| "auto"
| {
function: {
name: string;
};
type: "function";
};
}
export type ChatAnthropicToolsInput = Partial<AnthropicInput> &
BaseChatModelParams & {
llm?: BaseChatModel;
systemPromptTemplate?: BasePromptTemplate;
};
/**
* Experimental wrapper over Anthropic chat models that adds support for
* a function calling interface.
* @deprecated Prefer traditional tool use through ChatAnthropic.
*/
export class ChatAnthropicTools extends BaseChatModel<ChatAnthropicToolsCallOptions> {
llm: BaseChatModel;
stopSequences?: string[];
systemPromptTemplate: BasePromptTemplate;
lc_namespace = ["langchain", "experimental", "chat_models"];
static lc_name(): string {
return "ChatAnthropicTools";
}
constructor(fields?: ChatAnthropicToolsInput) {
if (fields?.cache !== undefined) {
throw new Error("Caching is not supported for this model.");
}
super(fields ?? {});
this.llm = fields?.llm ?? new ChatAnthropic(fields);
this.systemPromptTemplate =
fields?.systemPromptTemplate ?? DEFAULT_TOOL_SYSTEM_PROMPT;
this.stopSequences =
fields?.stopSequences ?? (this.llm as ChatAnthropic).stopSequences;
}
invocationParams() {
return this.llm.invocationParams();
}
/** @ignore */
_identifyingParams() {
return this.llm._identifyingParams();
}
async *_streamResponseChunks(
messages: BaseMessage[],
options: this["ParsedCallOptions"],
runManager?: CallbackManagerForLLMRun
): AsyncGenerator<ChatGenerationChunk> {
yield* this.llm._streamResponseChunks(messages, options, runManager);
}
async _prepareAndParseToolCall({
messages,
options,
systemPromptTemplate = DEFAULT_TOOL_SYSTEM_PROMPT,
stopSequences,
}: {
messages: BaseMessage[];
options: ChatAnthropicToolsCallOptions;
systemPromptTemplate?: BasePromptTemplate;
stopSequences: string[];
}): Promise<ChatResult> {
let promptMessages = messages;
let forced = false;
let toolCall: string | undefined;
const tools = options.tools === undefined ? [] : [...options.tools];
if (options.tools !== undefined && options.tools.length > 0) {
const content = await systemPromptTemplate.format({
tools: `<tools>\n${options.tools
.map(formatAsXMLRepresentation)
.join("\n\n")}</tools>`,
});
if (promptMessages.length && promptMessages[0]._getType() !== "system") {
const systemMessage = new SystemMessage({ content });
promptMessages = [systemMessage].concat(promptMessages);
} else {
const systemMessage = new SystemMessage({
content: `${content}\n\n${promptMessages[0].content}`,
});
promptMessages = [systemMessage].concat(promptMessages.slice(1));
}
// eslint-disable-next-line no-param-reassign
options.stop = stopSequences.concat(["</function_calls>"]);
if (options.tool_choice && options.tool_choice !== "auto") {
toolCall = options.tool_choice.function.name;
forced = true;
const matchingFunction = options.tools.find(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(tool) => tool.function.name === toolCall
);
if (!matchingFunction) {
throw new Error(
`No matching function found for passed "tool_choice"`
);
}
promptMessages = promptMessages.concat([
new AIMessage({
content: `<function_calls>\n<invoke><tool_name>${toolCall}</tool_name>`,
}),
]);
// eslint-disable-next-line no-param-reassign
delete options.tool_choice;
}
// eslint-disable-next-line no-param-reassign
delete options.tools;
} else if (options.tool_choice !== undefined) {
throw new Error(`If "tool_choice" is provided, "tools" must also be.`);
}
const chatResult = await this.llm
.withConfig({ runName: "ChatAnthropicTools" })
.invoke(promptMessages, options);
const chatGenerationContent = chatResult.content;
if (typeof chatGenerationContent !== "string") {
throw new Error("AnthropicFunctions does not support non-string output.");
}
if (forced) {
const parser = new XMLParser();
const result = parser.parse(
`<function_calls>\n<invoke><tool_name>${toolCall}</tool_name>${chatGenerationContent}</function_calls>`
);
if (toolCall === undefined) {
throw new Error(`Could not parse called function from model output.`);
}
const invocations: ToolInvocation[] = Array.isArray(
result.function_calls?.invoke ?? []
)
? result.function_calls.invoke
: [result.function_calls.invoke];
const responseMessageWithFunctions = new AIMessage({
content: "",
additional_kwargs: {
tool_calls: invocations.map((toolInvocation, i) => {
const calledTool = tools.find(
(tool) => tool.function.name === toolCall
);
if (calledTool === undefined) {
throw new Error(
`Called tool "${toolCall}" did not match an existing tool.`
);
}
return {
id: i.toString(),
type: "function",
function: {
name: toolInvocation.tool_name,
arguments: JSON.stringify(
fixArrayXMLParameters(
calledTool.function.parameters as JsonSchema7ObjectType,
toolInvocation.parameters
)
),
},
};
}),
},
});
return {
generations: [{ message: responseMessageWithFunctions, text: "" }],
};
} else if (chatGenerationContent.includes("<function_calls>")) {
const parser = new XMLParser();
const result = parser.parse(`${chatGenerationContent}</function_calls>`);
const invocations: ToolInvocation[] = Array.isArray(
result.function_calls?.invoke ?? []
)
? result.function_calls.invoke
: [result.function_calls.invoke];
const responseMessageWithFunctions = new AIMessage({
content: chatGenerationContent.split("<function_calls>")[0],
additional_kwargs: {
tool_calls: invocations.map((toolInvocation, i) => {
const calledTool = tools.find(
(tool) => tool.function.name === toolInvocation.tool_name
);
if (calledTool === undefined) {
throw new Error(
`Called tool "${toolCall}" did not match an existing tool.`
);
}
return {
id: i.toString(),
type: "function",
function: {
name: toolInvocation.tool_name,
arguments: JSON.stringify(
fixArrayXMLParameters(
calledTool.function.parameters as JsonSchema7ObjectType,
toolInvocation.parameters
)
),
},
};
}),
},
});
return {
generations: [{ message: responseMessageWithFunctions, text: "" }],
};
}
return { generations: [{ message: chatResult, text: "" }] };
}
async generate(
messages: BaseMessageLike[][],
parsedOptions?: ChatAnthropicToolsCallOptions,
callbacks?: Callbacks
): Promise<LLMResult> {
const baseMessages = messages.map((messageList) =>
messageList.map(coerceMessageLikeToMessage)
);
// generate results
const chatResults = await Promise.all(
baseMessages.map((messageList) =>
this._prepareAndParseToolCall({
messages: messageList,
options: { callbacks, ...parsedOptions },
systemPromptTemplate: this.systemPromptTemplate,
stopSequences: this.stopSequences ?? [],
})
)
);
// create combined output
const output: LLMResult = {
generations: chatResults.map((chatResult) => chatResult.generations),
};
return output;
}
async _generate(
_messages: BaseMessage[],
_options: this["ParsedCallOptions"],
_runManager?: CallbackManagerForLLMRun | undefined
): Promise<ChatResult> {
throw new Error("Unused.");
}
_llmType(): string {
return "anthropic_tool_calling";
}
withStructuredOutput<
// eslint-disable-next-line @typescript-eslint/no-explicit-any
RunOutput extends Record<string, any> = Record<string, any>
>(
outputSchema:
| StructuredOutputMethodParams<RunOutput, false>
| z.ZodType<RunOutput>
// eslint-disable-next-line @typescript-eslint/no-explicit-any
| Record<string, any>,
config?: StructuredOutputMethodOptions<false> & { force?: boolean }
): Runnable<BaseLanguageModelInput, RunOutput>;
withStructuredOutput<
// eslint-disable-next-line @typescript-eslint/no-explicit-any
RunOutput extends Record<string, any> = Record<string, any>
>(
outputSchema:
| StructuredOutputMethodParams<RunOutput, true>
| z.ZodType<RunOutput>
// eslint-disable-next-line @typescript-eslint/no-explicit-any
| Record<string, any>,
config?: StructuredOutputMethodOptions<true> & { force?: boolean }
): Runnable<BaseLanguageModelInput, { raw: BaseMessage; parsed: RunOutput }>;
withStructuredOutput<
// eslint-disable-next-line @typescript-eslint/no-explicit-any
RunOutput extends Record<string, any> = Record<string, any>
>(
outputSchema:
| StructuredOutputMethodParams<RunOutput, boolean>
| z.ZodType<RunOutput>
// eslint-disable-next-line @typescript-eslint/no-explicit-any
| Record<string, any>,
config?: StructuredOutputMethodOptions<boolean> & { force?: boolean }
):
| Runnable<BaseLanguageModelInput, RunOutput>
| Runnable<
BaseLanguageModelInput,
{ raw: BaseMessage; parsed: RunOutput }
> {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
let schema: z.ZodType<RunOutput> | Record<string, any>;
let name;
let method;
let includeRaw;
let force;
if (isStructuredOutputMethodParams(outputSchema)) {
schema = outputSchema.schema;
name = outputSchema.name;
method = outputSchema.method;
includeRaw = outputSchema.includeRaw;
} else {
schema = outputSchema;
name = config?.name;
method = config?.method;
includeRaw = config?.includeRaw;
force = config?.force ?? false;
}
if (method === "jsonMode") {
throw new Error(`Anthropic only supports "functionCalling" as a method.`);
}
let functionName = name ?? "extract";
let outputParser: BaseLLMOutputParser<RunOutput>;
let tools: ToolDefinition[];
if (isZodSchema(schema)) {
const jsonSchema = zodToJsonSchema(schema);
tools = [
{
type: "function" as const,
function: {
name: functionName,
description: jsonSchema.description,
parameters: jsonSchema,
},
},
];
outputParser = new JsonOutputKeyToolsParser({
returnSingle: true,
keyName: functionName,
zodSchema: schema,
});
} else {
let openAIFunctionDefinition: FunctionDefinition;
if (
typeof schema.name === "string" &&
typeof schema.parameters === "object" &&
schema.parameters != null
) {
openAIFunctionDefinition = schema as FunctionDefinition;
functionName = schema.name;
} else {
openAIFunctionDefinition = {
name: functionName,
description: schema.description ?? "",
parameters: schema,
};
}
tools = [
{
type: "function" as const,
function: openAIFunctionDefinition,
},
];
outputParser = new JsonOutputKeyToolsParser<RunOutput>({
returnSingle: true,
keyName: functionName,
});
}
const llm = this.bind({
tools,
tool_choice: force
? {
type: "function",
function: {
name: functionName,
},
}
: "auto",
});
if (!includeRaw) {
return llm.pipe(outputParser).withConfig({
runName: "ChatAnthropicStructuredOutput",
}) as Runnable<BaseLanguageModelInput, RunOutput>;
}
const parserAssign = RunnablePassthrough.assign({
// eslint-disable-next-line @typescript-eslint/no-explicit-any
parsed: (input: any, config) => outputParser.invoke(input.raw, config),
});
const parserNone = RunnablePassthrough.assign({
parsed: () => null,
});
const parsedWithFallback = parserAssign.withFallbacks({
fallbacks: [parserNone],
});
return RunnableSequence.from<
BaseLanguageModelInput,
{ raw: BaseMessage; parsed: RunOutput }
>([
{
raw: llm,
},
parsedWithFallback,
]).withConfig({
runName: "StructuredOutputRunnable",
});
}
}
function isZodSchema<
// eslint-disable-next-line @typescript-eslint/no-explicit-any
RunOutput extends Record<string, any> = Record<string, any>
>(
// eslint-disable-next-line @typescript-eslint/no-explicit-any
input: z.ZodType<RunOutput> | Record<string, any>
): input is z.ZodType<RunOutput> {
// Check for a characteristic method of Zod schemas
return typeof (input as z.ZodType<RunOutput>)?.parse === "function";
}
function isStructuredOutputMethodParams(
x: unknown
// eslint-disable-next-line @typescript-eslint/no-explicit-any
): x is StructuredOutputMethodParams<Record<string, any>> {
return (
x !== undefined &&
// eslint-disable-next-line @typescript-eslint/no-explicit-any
typeof (x as StructuredOutputMethodParams<Record<string, any>>).schema ===
"object"
);
}