@librechat/agents 2.3.0 → 2.3.2

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.
Files changed (77) hide show
  1. package/dist/cjs/graphs/Graph.cjs +6 -6
  2. package/dist/cjs/graphs/Graph.cjs.map +1 -1
  3. package/dist/cjs/llm/anthropic/llm.cjs +7 -7
  4. package/dist/cjs/llm/anthropic/llm.cjs.map +1 -1
  5. package/dist/cjs/llm/anthropic/utils/message_inputs.cjs +6 -6
  6. package/dist/cjs/llm/anthropic/utils/message_inputs.cjs.map +1 -1
  7. package/dist/cjs/llm/anthropic/utils/message_outputs.cjs +24 -24
  8. package/dist/cjs/llm/anthropic/utils/message_outputs.cjs.map +1 -1
  9. package/dist/cjs/llm/fake.cjs.map +1 -1
  10. package/dist/cjs/llm/text.cjs.map +1 -1
  11. package/dist/cjs/main.cjs +3 -0
  12. package/dist/cjs/main.cjs.map +1 -1
  13. package/dist/cjs/messages/core.cjs +5 -5
  14. package/dist/cjs/messages/core.cjs.map +1 -1
  15. package/dist/cjs/messages/format.cjs +11 -9
  16. package/dist/cjs/messages/format.cjs.map +1 -1
  17. package/dist/cjs/messages/prune.cjs +155 -181
  18. package/dist/cjs/messages/prune.cjs.map +1 -1
  19. package/dist/cjs/run.cjs.map +1 -1
  20. package/dist/cjs/stream.cjs +3 -4
  21. package/dist/cjs/stream.cjs.map +1 -1
  22. package/dist/cjs/tools/ToolNode.cjs +1 -1
  23. package/dist/cjs/tools/ToolNode.cjs.map +1 -1
  24. package/dist/cjs/utils/tokens.cjs +3 -3
  25. package/dist/cjs/utils/tokens.cjs.map +1 -1
  26. package/dist/esm/graphs/Graph.mjs +6 -6
  27. package/dist/esm/graphs/Graph.mjs.map +1 -1
  28. package/dist/esm/llm/anthropic/llm.mjs +7 -7
  29. package/dist/esm/llm/anthropic/llm.mjs.map +1 -1
  30. package/dist/esm/llm/anthropic/utils/message_inputs.mjs +6 -6
  31. package/dist/esm/llm/anthropic/utils/message_inputs.mjs.map +1 -1
  32. package/dist/esm/llm/anthropic/utils/message_outputs.mjs +24 -24
  33. package/dist/esm/llm/anthropic/utils/message_outputs.mjs.map +1 -1
  34. package/dist/esm/llm/fake.mjs.map +1 -1
  35. package/dist/esm/llm/text.mjs.map +1 -1
  36. package/dist/esm/main.mjs +1 -1
  37. package/dist/esm/messages/core.mjs +5 -5
  38. package/dist/esm/messages/core.mjs.map +1 -1
  39. package/dist/esm/messages/format.mjs +11 -9
  40. package/dist/esm/messages/format.mjs.map +1 -1
  41. package/dist/esm/messages/prune.mjs +153 -182
  42. package/dist/esm/messages/prune.mjs.map +1 -1
  43. package/dist/esm/run.mjs.map +1 -1
  44. package/dist/esm/stream.mjs +3 -4
  45. package/dist/esm/stream.mjs.map +1 -1
  46. package/dist/esm/tools/ToolNode.mjs +1 -1
  47. package/dist/esm/tools/ToolNode.mjs.map +1 -1
  48. package/dist/esm/utils/tokens.mjs +3 -3
  49. package/dist/esm/utils/tokens.mjs.map +1 -1
  50. package/dist/types/messages/format.d.ts +1 -2
  51. package/dist/types/messages/prune.d.ts +31 -2
  52. package/dist/types/types/stream.d.ts +2 -2
  53. package/dist/types/utils/tokens.d.ts +1 -1
  54. package/package.json +4 -3
  55. package/src/graphs/Graph.ts +8 -8
  56. package/src/llm/anthropic/llm.ts +7 -8
  57. package/src/llm/anthropic/types.ts +4 -4
  58. package/src/llm/anthropic/utils/message_inputs.ts +6 -6
  59. package/src/llm/anthropic/utils/message_outputs.ts +39 -39
  60. package/src/llm/fake.ts +2 -2
  61. package/src/llm/text.ts +1 -1
  62. package/src/messages/core.ts +6 -6
  63. package/src/messages/format.ts +43 -42
  64. package/src/messages/formatAgentMessages.test.ts +35 -35
  65. package/src/messages/formatAgentMessages.tools.test.ts +30 -30
  66. package/src/messages/prune.ts +182 -226
  67. package/src/messages/shiftIndexTokenCountMap.test.ts +18 -18
  68. package/src/mockStream.ts +1 -1
  69. package/src/run.ts +2 -2
  70. package/src/specs/prune.test.ts +89 -89
  71. package/src/specs/reasoning.test.ts +1 -1
  72. package/src/specs/thinking-prune.test.ts +291 -243
  73. package/src/specs/tool-error.test.ts +16 -17
  74. package/src/stream.ts +13 -14
  75. package/src/tools/ToolNode.ts +1 -1
  76. package/src/types/stream.ts +4 -3
  77. package/src/utils/tokens.ts +12 -12
@@ -1,5 +1,4 @@
1
- /* eslint-disable no-console */
2
- /* eslint-disable @typescript-eslint/no-explicit-any */
1
+
3
2
  import { z } from 'zod';
4
3
  import { config } from 'dotenv';
5
4
  config();
@@ -71,7 +70,7 @@ describe('Tool Error Handling Tests', () => {
71
70
  [GraphEvents.CHAT_MODEL_STREAM]: new ChatModelStreamHandler(),
72
71
  [GraphEvents.ON_RUN_STEP_COMPLETED]: {
73
72
  handle: (event: GraphEvents.ON_RUN_STEP_COMPLETED, data: t.StreamEventData): void => {
74
- if ((data.result as t.MessageContentComplex)?.['type'] === 'tool_call') {
73
+ if ((data.result as t.MessageContentComplex)['type'] === 'tool_call') {
75
74
  run.Graph?.overrideTestModel(['Looks like there was an error calling the tool.'], 5);
76
75
  }
77
76
  onRunStepCompletedSpy(event, data);
@@ -118,16 +117,16 @@ describe('Tool Error Handling Tests', () => {
118
117
  });
119
118
 
120
119
  const toolCalls: ToolCall[] = [
121
- {
122
- name: "errorTool",
123
- args: {
124
- input: "test input",
125
- },
126
- id: "call_test123",
127
- type: "tool_call",
128
- }
129
- ];
130
-
120
+ {
121
+ name: 'errorTool',
122
+ args: {
123
+ input: 'test input',
124
+ },
125
+ id: 'call_test123',
126
+ type: 'tool_call',
127
+ }
128
+ ];
129
+
131
130
  const firstResponse = 'Let me try calling the tool';
132
131
  run.Graph?.overrideTestModel([firstResponse], 5, toolCalls);
133
132
 
@@ -142,12 +141,12 @@ describe('Tool Error Handling Tests', () => {
142
141
 
143
142
  // Verify handleToolCallError was called
144
143
  expect(handleToolCallErrorSpy).toHaveBeenCalled();
145
-
144
+
146
145
  // Find the tool call content part
147
- const toolCallPart = contentParts.find(part =>
148
- part?.type === 'tool_call'
146
+ const toolCallPart = contentParts.find(part =>
147
+ part.type === 'tool_call'
149
148
  ) as t.ToolCallContent | undefined;
150
-
149
+
151
150
  // Verify the error message in contentParts
152
151
  expect(toolCallPart).toBeDefined();
153
152
  expect(toolCallPart?.tool_call?.args).toEqual(JSON.stringify(toolCalls[0].args));
package/src/stream.ts CHANGED
@@ -47,22 +47,21 @@ export const handleToolCalls = (toolCalls?: ToolCall[], metadata?: Record<string
47
47
  return;
48
48
  }
49
49
 
50
-
51
50
  const stepKey = graph.getStepKey(metadata);
52
-
51
+
53
52
  for (const tool_call of toolCalls) {
54
53
  const toolCallId = tool_call.id ?? `toolu_${nanoid()}`;
55
54
  tool_call.id = toolCallId;
56
55
  if (!toolCallId || graph.toolCallStepIds.has(toolCallId)) {
57
56
  continue;
58
57
  }
59
-
58
+
60
59
  let prevStepId = '';
61
60
  let prevRunStep: t.RunStep | undefined;
62
61
  try {
63
62
  prevStepId = graph.getStepIdByKey(stepKey, graph.contentData.length - 1);
64
63
  prevRunStep = graph.getRunStep(prevStepId);
65
- } catch (e) {
64
+ } catch {
66
65
  // no previous step
67
66
  }
68
67
 
@@ -92,10 +91,10 @@ export const handleToolCalls = (toolCalls?: ToolCall[], metadata?: Record<string
92
91
  graph.messageStepHasToolCalls.set(prevStepId, true);
93
92
  }
94
93
 
95
- graph.dispatchRunStep(stepKey, {
96
- type: StepTypes.TOOL_CALLS,
97
- tool_calls: [tool_call],
98
- });
94
+ graph.dispatchRunStep(stepKey, {
95
+ type: StepTypes.TOOL_CALLS,
96
+ tool_calls: [tool_call],
97
+ });
99
98
  }
100
99
  };
101
100
 
@@ -166,7 +165,7 @@ export class ChatModelStreamHandler implements t.EventHandler {
166
165
  const stepId = graph.getStepIdByKey(stepKey);
167
166
  const runStep = graph.getRunStep(stepId);
168
167
  if (!runStep) {
169
- // eslint-disable-next-line no-console
168
+
170
169
  console.warn(`\n
171
170
  ==============================================================
172
171
 
@@ -214,8 +213,8 @@ hasToolCallChunks: ${hasToolCallChunks}
214
213
  graph.dispatchReasoningDelta(stepId, {
215
214
  content: content.map((c) => ({
216
215
  type: ContentTypes.THINK,
217
- think: (c as t.ThinkingContentText).thinking ?? (c as t.BedrockReasoningContentText).reasoningText?.text ?? '',
218
- }))});
216
+ think: (c as t.ThinkingContentText).thinking ?? (c as t.BedrockReasoningContentText).reasoningText.text ?? '',
217
+ }))});
219
218
  }
220
219
  }
221
220
  handleToolCallChunks = ({
@@ -232,7 +231,7 @@ hasToolCallChunks: ${hasToolCallChunks}
232
231
  try {
233
232
  prevStepId = graph.getStepIdByKey(stepKey, graph.contentData.length - 1);
234
233
  prevRunStep = graph.getRunStep(prevStepId);
235
- } catch (e) {
234
+ } catch {
236
235
  /** Edge Case: If no previous step exists, create a new message creation step */
237
236
  const message_id = getMessageId(stepKey, graph, true) ?? '';
238
237
  prevStepId = graph.dispatchRunStep(stepKey, {
@@ -245,13 +244,13 @@ hasToolCallChunks: ${hasToolCallChunks}
245
244
  }
246
245
 
247
246
  const _stepId = graph.getStepIdByKey(stepKey, prevRunStep?.index);
248
-
247
+
249
248
  /** Edge Case: Tool Call Run Step or `tool_call_ids` never dispatched */
250
249
  const tool_calls: ToolCall[] | undefined =
251
250
  prevStepId && prevRunStep && prevRunStep.type === StepTypes.MESSAGE_CREATION
252
251
  ? []
253
252
  : undefined;
254
-
253
+
255
254
  /** Edge Case: `id` and `name` fields cannot be empty strings */
256
255
  for (const toolCallChunk of toolCallChunks) {
257
256
  if (toolCallChunk.name === '') {
@@ -91,7 +91,7 @@ export class ToolNode<T = any> extends RunnableCallable<T, T> {
91
91
  id: call.id!,
92
92
  name: call.name,
93
93
  input: call.args,
94
- }, config?.metadata);
94
+ }, config.metadata);
95
95
  return new ToolMessage({
96
96
  content: `Error: ${e.message}\n Please fix your mistakes.`,
97
97
  name: call.name,
@@ -56,12 +56,13 @@ export type RunStep = {
56
56
  index: number; // #new
57
57
  stepIndex?: number; // #new
58
58
  stepDetails: StepDetails;
59
- usage?: null | {
59
+ usage?: null | object;
60
+ // {
60
61
  // Define usage structure if it's ever non-null
61
62
  // prompt_tokens: number; // #new
62
63
  // completion_tokens: number; // #new
63
64
  // total_tokens: number; // #new
64
- };
65
+ // };
65
66
  };
66
67
 
67
68
  /**
@@ -285,7 +286,7 @@ export type MessageContentComplex = (ThinkingContentText | AgentUpdate | ToolCal
285
286
  export interface TMessage {
286
287
  role?: string;
287
288
  content?: MessageContentComplex[] | string;
288
- [key: string]: any;
289
+ [key: string]: unknown;
289
290
  }
290
291
 
291
292
  export type TPayload = Array<Partial<TMessage>>;
@@ -1,13 +1,13 @@
1
- import { Tiktoken } from "js-tiktoken/lite";
2
- import type { BaseMessage } from "@langchain/core/messages";
3
- import { ContentTypes } from "@/common/enum";
1
+ import { Tiktoken } from 'js-tiktoken/lite';
2
+ import type { BaseMessage } from '@langchain/core/messages';
3
+ import { ContentTypes } from '@/common/enum';
4
4
 
5
5
  export function getTokenCountForMessage(message: BaseMessage, getTokenCount: (text: string) => number): number {
6
- let tokensPerMessage = 3;
6
+ const tokensPerMessage = 3;
7
7
 
8
- const processValue = (value: unknown) => {
8
+ const processValue = (value: unknown): void => {
9
9
  if (Array.isArray(value)) {
10
- for (let item of value) {
10
+ for (const item of value) {
11
11
  if (
12
12
  !item ||
13
13
  !item.type ||
@@ -58,13 +58,13 @@ export function getTokenCountForMessage(message: BaseMessage, getTokenCount: (te
58
58
  }
59
59
 
60
60
  export const createTokenCounter = async () => {
61
- const res = await fetch(`https://tiktoken.pages.dev/js/o200k_base.json`);
61
+ const res = await fetch('https://tiktoken.pages.dev/js/o200k_base.json');
62
62
  const o200k_base = await res.json();
63
63
 
64
- const countTokens = (text: string) => {
64
+ const countTokens = (text: string): number => {
65
65
  const enc = new Tiktoken(o200k_base);
66
66
  return enc.encode(text).length;
67
- }
68
-
69
- return (message: BaseMessage) => getTokenCountForMessage(message, countTokens);
70
- }
67
+ };
68
+
69
+ return (message: BaseMessage): number => getTokenCountForMessage(message, countTokens);
70
+ };