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.
Files changed (217) hide show
  1. package/LICENSE +1 -5
  2. package/dist/cjs/common/enum.cjs +1 -2
  3. package/dist/cjs/common/enum.cjs.map +1 -1
  4. package/dist/cjs/instrumentation.cjs.map +1 -1
  5. package/dist/cjs/llm/anthropic/types.cjs.map +1 -1
  6. package/dist/cjs/llm/anthropic/utils/message_inputs.cjs +79 -2
  7. package/dist/cjs/llm/anthropic/utils/message_inputs.cjs.map +1 -1
  8. package/dist/cjs/llm/anthropic/utils/tools.cjs.map +1 -1
  9. package/dist/cjs/llm/bedrock/index.cjs +99 -0
  10. package/dist/cjs/llm/bedrock/index.cjs.map +1 -0
  11. package/dist/cjs/llm/fake.cjs.map +1 -1
  12. package/dist/cjs/llm/providers.cjs +13 -16
  13. package/dist/cjs/llm/providers.cjs.map +1 -1
  14. package/dist/cjs/llm/text.cjs.map +1 -1
  15. package/dist/cjs/messages/core.cjs +14 -14
  16. package/dist/cjs/messages/core.cjs.map +1 -1
  17. package/dist/cjs/messages/ids.cjs.map +1 -1
  18. package/dist/cjs/messages/prune.cjs.map +1 -1
  19. package/dist/cjs/run.cjs +10 -1
  20. package/dist/cjs/run.cjs.map +1 -1
  21. package/dist/cjs/splitStream.cjs.map +1 -1
  22. package/dist/cjs/stream.cjs +4 -1
  23. package/dist/cjs/stream.cjs.map +1 -1
  24. package/dist/cjs/tools/ToolNode.cjs +10 -1
  25. package/dist/cjs/tools/ToolNode.cjs.map +1 -1
  26. package/dist/cjs/tools/handlers.cjs +29 -25
  27. package/dist/cjs/tools/handlers.cjs.map +1 -1
  28. package/dist/cjs/tools/search/anthropic.cjs.map +1 -1
  29. package/dist/cjs/tools/search/content.cjs.map +1 -1
  30. package/dist/cjs/tools/search/firecrawl.cjs.map +1 -1
  31. package/dist/cjs/tools/search/format.cjs.map +1 -1
  32. package/dist/cjs/tools/search/highlights.cjs.map +1 -1
  33. package/dist/cjs/tools/search/rerankers.cjs.map +1 -1
  34. package/dist/cjs/tools/search/schema.cjs +25 -25
  35. package/dist/cjs/tools/search/schema.cjs.map +1 -1
  36. package/dist/cjs/tools/search/search.cjs +6 -1
  37. package/dist/cjs/tools/search/search.cjs.map +1 -1
  38. package/dist/cjs/tools/search/serper-scraper.cjs.map +1 -1
  39. package/dist/cjs/tools/search/tool.cjs +162 -35
  40. package/dist/cjs/tools/search/tool.cjs.map +1 -1
  41. package/dist/cjs/tools/search/utils.cjs.map +1 -1
  42. package/dist/cjs/utils/graph.cjs.map +1 -1
  43. package/dist/cjs/utils/llm.cjs +0 -1
  44. package/dist/cjs/utils/llm.cjs.map +1 -1
  45. package/dist/cjs/utils/misc.cjs.map +1 -1
  46. package/dist/cjs/utils/run.cjs.map +1 -1
  47. package/dist/cjs/utils/title.cjs +7 -7
  48. package/dist/cjs/utils/title.cjs.map +1 -1
  49. package/dist/esm/common/enum.mjs +1 -2
  50. package/dist/esm/common/enum.mjs.map +1 -1
  51. package/dist/esm/instrumentation.mjs.map +1 -1
  52. package/dist/esm/llm/anthropic/types.mjs.map +1 -1
  53. package/dist/esm/llm/anthropic/utils/message_inputs.mjs +79 -2
  54. package/dist/esm/llm/anthropic/utils/message_inputs.mjs.map +1 -1
  55. package/dist/esm/llm/anthropic/utils/tools.mjs.map +1 -1
  56. package/dist/esm/llm/bedrock/index.mjs +97 -0
  57. package/dist/esm/llm/bedrock/index.mjs.map +1 -0
  58. package/dist/esm/llm/fake.mjs.map +1 -1
  59. package/dist/esm/llm/providers.mjs +2 -5
  60. package/dist/esm/llm/providers.mjs.map +1 -1
  61. package/dist/esm/llm/text.mjs.map +1 -1
  62. package/dist/esm/messages/core.mjs +14 -14
  63. package/dist/esm/messages/core.mjs.map +1 -1
  64. package/dist/esm/messages/ids.mjs.map +1 -1
  65. package/dist/esm/messages/prune.mjs.map +1 -1
  66. package/dist/esm/run.mjs +10 -1
  67. package/dist/esm/run.mjs.map +1 -1
  68. package/dist/esm/splitStream.mjs.map +1 -1
  69. package/dist/esm/stream.mjs +4 -1
  70. package/dist/esm/stream.mjs.map +1 -1
  71. package/dist/esm/tools/ToolNode.mjs +10 -1
  72. package/dist/esm/tools/ToolNode.mjs.map +1 -1
  73. package/dist/esm/tools/handlers.mjs +30 -26
  74. package/dist/esm/tools/handlers.mjs.map +1 -1
  75. package/dist/esm/tools/search/anthropic.mjs.map +1 -1
  76. package/dist/esm/tools/search/content.mjs.map +1 -1
  77. package/dist/esm/tools/search/firecrawl.mjs.map +1 -1
  78. package/dist/esm/tools/search/format.mjs.map +1 -1
  79. package/dist/esm/tools/search/highlights.mjs.map +1 -1
  80. package/dist/esm/tools/search/rerankers.mjs.map +1 -1
  81. package/dist/esm/tools/search/schema.mjs +25 -25
  82. package/dist/esm/tools/search/schema.mjs.map +1 -1
  83. package/dist/esm/tools/search/search.mjs +6 -1
  84. package/dist/esm/tools/search/search.mjs.map +1 -1
  85. package/dist/esm/tools/search/serper-scraper.mjs.map +1 -1
  86. package/dist/esm/tools/search/tool.mjs +162 -35
  87. package/dist/esm/tools/search/tool.mjs.map +1 -1
  88. package/dist/esm/tools/search/utils.mjs.map +1 -1
  89. package/dist/esm/utils/graph.mjs.map +1 -1
  90. package/dist/esm/utils/llm.mjs +0 -1
  91. package/dist/esm/utils/llm.mjs.map +1 -1
  92. package/dist/esm/utils/misc.mjs.map +1 -1
  93. package/dist/esm/utils/run.mjs.map +1 -1
  94. package/dist/esm/utils/title.mjs +7 -7
  95. package/dist/esm/utils/title.mjs.map +1 -1
  96. package/dist/types/common/enum.d.ts +1 -2
  97. package/dist/types/llm/bedrock/index.d.ts +36 -0
  98. package/dist/types/tools/search/types.d.ts +2 -0
  99. package/dist/types/types/llm.d.ts +3 -8
  100. package/package.json +15 -11
  101. package/src/common/enum.ts +1 -2
  102. package/src/common/index.ts +1 -1
  103. package/src/instrumentation.ts +22 -22
  104. package/src/llm/anthropic/llm.spec.ts +1442 -1442
  105. package/src/llm/anthropic/types.ts +140 -140
  106. package/src/llm/anthropic/utils/message_inputs.ts +757 -660
  107. package/src/llm/anthropic/utils/output_parsers.ts +133 -133
  108. package/src/llm/anthropic/utils/tools.ts +29 -29
  109. package/src/llm/bedrock/index.ts +128 -0
  110. package/src/llm/fake.ts +133 -133
  111. package/src/llm/google/utils/tools.ts +160 -160
  112. package/src/llm/openai/types.ts +24 -24
  113. package/src/llm/openai/utils/isReasoningModel.test.ts +90 -90
  114. package/src/llm/providers.ts +2 -7
  115. package/src/llm/text.ts +94 -94
  116. package/src/messages/core.ts +463 -463
  117. package/src/messages/formatAgentMessages.tools.test.ts +400 -400
  118. package/src/messages/formatMessage.test.ts +693 -693
  119. package/src/messages/ids.ts +26 -26
  120. package/src/messages/prune.ts +567 -567
  121. package/src/messages/shiftIndexTokenCountMap.test.ts +81 -81
  122. package/src/mockStream.ts +98 -98
  123. package/src/prompts/collab.ts +5 -5
  124. package/src/prompts/index.ts +1 -1
  125. package/src/prompts/taskmanager.ts +61 -61
  126. package/src/run.ts +13 -4
  127. package/src/scripts/ant_web_search_edge_case.ts +162 -0
  128. package/src/scripts/ant_web_search_error_edge_case.ts +148 -0
  129. package/src/scripts/args.ts +48 -48
  130. package/src/scripts/caching.ts +123 -123
  131. package/src/scripts/code_exec_files.ts +193 -193
  132. package/src/scripts/empty_input.ts +137 -137
  133. package/src/scripts/image.ts +178 -178
  134. package/src/scripts/memory.ts +97 -97
  135. package/src/scripts/thinking.ts +149 -149
  136. package/src/specs/anthropic.simple.test.ts +67 -0
  137. package/src/specs/spec.utils.ts +3 -3
  138. package/src/specs/token-distribution-edge-case.test.ts +316 -316
  139. package/src/specs/tool-error.test.ts +193 -193
  140. package/src/splitStream.test.ts +691 -691
  141. package/src/splitStream.ts +234 -234
  142. package/src/stream.test.ts +94 -94
  143. package/src/stream.ts +4 -1
  144. package/src/tools/ToolNode.ts +12 -1
  145. package/src/tools/handlers.ts +32 -28
  146. package/src/tools/search/anthropic.ts +51 -51
  147. package/src/tools/search/content.test.ts +173 -173
  148. package/src/tools/search/content.ts +147 -147
  149. package/src/tools/search/direct-url.test.ts +530 -0
  150. package/src/tools/search/firecrawl.ts +210 -210
  151. package/src/tools/search/format.ts +250 -250
  152. package/src/tools/search/highlights.ts +320 -320
  153. package/src/tools/search/index.ts +2 -2
  154. package/src/tools/search/jina-reranker.test.ts +126 -126
  155. package/src/tools/search/output.md +2775 -2775
  156. package/src/tools/search/rerankers.ts +242 -242
  157. package/src/tools/search/schema.ts +63 -63
  158. package/src/tools/search/search.ts +766 -759
  159. package/src/tools/search/serper-scraper.ts +155 -155
  160. package/src/tools/search/test.html +883 -883
  161. package/src/tools/search/test.md +642 -642
  162. package/src/tools/search/test.ts +159 -159
  163. package/src/tools/search/tool.ts +619 -471
  164. package/src/tools/search/types.ts +689 -687
  165. package/src/tools/search/utils.ts +79 -79
  166. package/src/types/index.ts +6 -6
  167. package/src/types/llm.ts +2 -8
  168. package/src/utils/graph.ts +10 -10
  169. package/src/utils/llm.ts +26 -27
  170. package/src/utils/llmConfig.ts +5 -3
  171. package/src/utils/logging.ts +48 -48
  172. package/src/utils/misc.ts +57 -57
  173. package/src/utils/run.ts +100 -100
  174. package/src/utils/title.ts +165 -165
  175. package/dist/cjs/llm/ollama/index.cjs +0 -70
  176. package/dist/cjs/llm/ollama/index.cjs.map +0 -1
  177. package/dist/cjs/llm/ollama/utils.cjs +0 -158
  178. package/dist/cjs/llm/ollama/utils.cjs.map +0 -1
  179. package/dist/esm/llm/ollama/index.mjs +0 -68
  180. package/dist/esm/llm/ollama/index.mjs.map +0 -1
  181. package/dist/esm/llm/ollama/utils.mjs +0 -155
  182. package/dist/esm/llm/ollama/utils.mjs.map +0 -1
  183. package/dist/types/llm/ollama/index.d.ts +0 -8
  184. package/dist/types/llm/ollama/utils.d.ts +0 -7
  185. package/src/llm/ollama/index.ts +0 -92
  186. package/src/llm/ollama/utils.ts +0 -193
  187. package/src/proto/CollabGraph.ts +0 -269
  188. package/src/proto/TaskManager.ts +0 -243
  189. package/src/proto/collab.ts +0 -200
  190. package/src/proto/collab_design.ts +0 -184
  191. package/src/proto/collab_design_v2.ts +0 -224
  192. package/src/proto/collab_design_v3.ts +0 -255
  193. package/src/proto/collab_design_v4.ts +0 -220
  194. package/src/proto/collab_design_v5.ts +0 -251
  195. package/src/proto/collab_graph.ts +0 -181
  196. package/src/proto/collab_original.ts +0 -123
  197. package/src/proto/example.ts +0 -93
  198. package/src/proto/example_new.ts +0 -68
  199. package/src/proto/example_old.ts +0 -201
  200. package/src/proto/example_test.ts +0 -152
  201. package/src/proto/example_test_anthropic.ts +0 -100
  202. package/src/proto/log_stream.ts +0 -202
  203. package/src/proto/main_collab_community_event.ts +0 -133
  204. package/src/proto/main_collab_design_v2.ts +0 -96
  205. package/src/proto/main_collab_design_v4.ts +0 -100
  206. package/src/proto/main_collab_design_v5.ts +0 -135
  207. package/src/proto/main_collab_global_analysis.ts +0 -122
  208. package/src/proto/main_collab_hackathon_event.ts +0 -153
  209. package/src/proto/main_collab_space_mission.ts +0 -153
  210. package/src/proto/main_philosophy.ts +0 -210
  211. package/src/proto/original_script.ts +0 -126
  212. package/src/proto/standard.ts +0 -100
  213. package/src/proto/stream.ts +0 -56
  214. package/src/proto/tasks.ts +0 -118
  215. package/src/proto/tools/global_analysis_tools.ts +0 -86
  216. package/src/proto/tools/space_mission_tools.ts +0 -60
  217. package/src/proto/vertexai.ts +0 -54
@@ -0,0 +1,162 @@
1
+ /* eslint-disable no-console */
2
+ // src/scripts/cli.ts
3
+ import { config } from 'dotenv';
4
+ config();
5
+ import { HumanMessage, BaseMessage } from '@langchain/core/messages';
6
+ import type * as t from '@/types';
7
+ import { ChatModelStreamHandler, createContentAggregator } from '@/stream';
8
+ import { ToolEndHandler, ModelEndHandler } from '@/events';
9
+ import { Calculator } from '@/tools/Calculator';
10
+
11
+ import { getArgs } from '@/scripts/args';
12
+ import { Run } from '@/run';
13
+ import { GraphEvents, Callback, Providers } from '@/common';
14
+ import { getLLMConfig } from '@/utils/llmConfig';
15
+
16
+ const conversationHistory: BaseMessage[] = [];
17
+ let _contentParts: (t.MessageContentComplex | undefined)[] = [];
18
+ async function testStandardStreaming(): Promise<void> {
19
+ const { userName, location, currentDate } = await getArgs();
20
+ const { contentParts, aggregateContent } = createContentAggregator();
21
+ _contentParts = contentParts;
22
+ const customHandlers = {
23
+ [GraphEvents.TOOL_END]: new ToolEndHandler(),
24
+ [GraphEvents.CHAT_MODEL_END]: new ModelEndHandler(),
25
+ [GraphEvents.CHAT_MODEL_STREAM]: new ChatModelStreamHandler(),
26
+ [GraphEvents.ON_RUN_STEP_COMPLETED]: {
27
+ handle: (
28
+ event: GraphEvents.ON_RUN_STEP_COMPLETED,
29
+ data: t.StreamEventData
30
+ ): void => {
31
+ console.log('====== ON_RUN_STEP_COMPLETED ======');
32
+ // console.dir(data, { depth: null });
33
+ aggregateContent({
34
+ event,
35
+ data: data as unknown as { result: t.ToolEndEvent },
36
+ });
37
+ },
38
+ },
39
+ [GraphEvents.ON_RUN_STEP]: {
40
+ handle: (
41
+ event: GraphEvents.ON_RUN_STEP,
42
+ data: t.StreamEventData
43
+ ): void => {
44
+ console.log('====== ON_RUN_STEP ======');
45
+ console.dir(data, { depth: null });
46
+ aggregateContent({ event, data: data as t.RunStep });
47
+ },
48
+ },
49
+ [GraphEvents.ON_RUN_STEP_DELTA]: {
50
+ handle: (
51
+ event: GraphEvents.ON_RUN_STEP_DELTA,
52
+ data: t.StreamEventData
53
+ ): void => {
54
+ console.log('====== ON_RUN_STEP_DELTA ======');
55
+ console.dir(data, { depth: null });
56
+ aggregateContent({ event, data: data as t.RunStepDeltaEvent });
57
+ },
58
+ },
59
+ [GraphEvents.ON_MESSAGE_DELTA]: {
60
+ handle: (
61
+ event: GraphEvents.ON_MESSAGE_DELTA,
62
+ data: t.StreamEventData
63
+ ): void => {
64
+ // console.log('====== ON_MESSAGE_DELTA ======');
65
+ // console.dir(data, { depth: null });
66
+ aggregateContent({ event, data: data as t.MessageDeltaEvent });
67
+ },
68
+ },
69
+ [GraphEvents.TOOL_START]: {
70
+ handle: (
71
+ _event: string,
72
+ data: t.StreamEventData,
73
+ metadata?: Record<string, unknown>
74
+ ): void => {
75
+ console.log('====== TOOL_START ======');
76
+ // console.dir(data, { depth: null });
77
+ },
78
+ },
79
+ };
80
+
81
+ const llmConfig = getLLMConfig(
82
+ Providers.ANTHROPIC
83
+ ) as t.AnthropicClientOptions & t.SharedLLMConfig;
84
+ llmConfig.model = 'claude-haiku-4-5';
85
+
86
+ const run = await Run.create<t.IState>({
87
+ runId: 'test-run-id',
88
+ graphConfig: {
89
+ type: 'standard',
90
+ llmConfig,
91
+ tools: [
92
+ {
93
+ type: 'web_search_20250305',
94
+ name: 'web_search',
95
+ max_uses: 5,
96
+ },
97
+ new Calculator(),
98
+ ],
99
+ instructions: 'You are a friendly AI assistant.',
100
+ // additional_instructions: `Always address the user by their name. The user's name is ${userName} and they are located in ${location}.`,
101
+ },
102
+ returnContent: true,
103
+ customHandlers,
104
+ });
105
+
106
+ const config = {
107
+ configurable: {
108
+ provider: Providers.ANTHROPIC,
109
+ thread_id: 'conversation-num-1',
110
+ },
111
+ streamMode: 'values',
112
+ version: 'v2' as const,
113
+ };
114
+
115
+ console.log('Test 1: Web search + calculator (simultaneous tool test)');
116
+
117
+ // const userMessage = `
118
+ // Make a search for the weather in ${location} today, which is ${currentDate}.
119
+ // Before making the search, please let me know what you're about to do, then immediately start searching without hesitation.
120
+ // Make sure to always refer to me by name, which is ${userName}.
121
+ // After giving me a thorough summary, tell me a joke about the weather forecast we went over.
122
+ // `;
123
+ // const userMessage = 'Are massage guns good?';
124
+ // const userMessage = 'What is functional programming?';
125
+ // const userMessage = "Get me today's trending news.";
126
+ // const userMessage = "search recent italy earthquake volcano activity";
127
+ // const userMessage =
128
+ // "use 'Trump' as the exact search query and tell me what you find.";
129
+ const userMessage =
130
+ 'Can you search the web for the current population of Tokyo, and also calculate what 15% of that population would be? Do both at the same time.';
131
+
132
+ conversationHistory.push(new HumanMessage(userMessage));
133
+
134
+ const inputs = {
135
+ messages: conversationHistory,
136
+ };
137
+ const finalContentParts = await run.processStream(inputs, config);
138
+ const finalMessages = run.getRunMessages();
139
+ if (finalMessages) {
140
+ conversationHistory.push(...finalMessages);
141
+ console.dir(conversationHistory, { depth: null });
142
+ }
143
+ // console.dir(finalContentParts, { depth: null });
144
+ console.log('\n\n====================\n\n');
145
+ // console.dir(contentParts, { depth: null });
146
+ }
147
+
148
+ process.on('unhandledRejection', (reason, promise) => {
149
+ console.error('Unhandled Rejection at:', promise, 'reason:', reason);
150
+ console.log('Content Parts:');
151
+ console.dir(_contentParts, { depth: null });
152
+ process.exit(1);
153
+ });
154
+
155
+ testStandardStreaming().catch((err) => {
156
+ console.error(err);
157
+ console.log('Conversation history:');
158
+ console.dir(conversationHistory, { depth: null });
159
+ console.log('Content Parts:');
160
+ console.dir(_contentParts, { depth: null });
161
+ process.exit(1);
162
+ });
@@ -0,0 +1,148 @@
1
+ /* eslint-disable no-console */
2
+ // src/scripts/ant_web_search_error_edge_case.ts
3
+ import { config } from 'dotenv';
4
+ config();
5
+ import { HumanMessage, BaseMessage } from '@langchain/core/messages';
6
+ import type * as t from '@/types';
7
+ import { ChatModelStreamHandler, createContentAggregator } from '@/stream';
8
+ import { ToolEndHandler, ModelEndHandler } from '@/events';
9
+
10
+ import { getArgs } from '@/scripts/args';
11
+ import { Run } from '@/run';
12
+ import { GraphEvents, Providers } from '@/common';
13
+ import { getLLMConfig } from '@/utils/llmConfig';
14
+
15
+ const conversationHistory: BaseMessage[] = [];
16
+ let _contentParts: (t.MessageContentComplex | undefined)[] = [];
17
+ async function testStandardStreaming(): Promise<void> {
18
+ const { userName, location, currentDate } = await getArgs();
19
+ const { contentParts, aggregateContent } = createContentAggregator();
20
+ _contentParts = contentParts;
21
+ const customHandlers = {
22
+ [GraphEvents.TOOL_END]: new ToolEndHandler(),
23
+ [GraphEvents.CHAT_MODEL_END]: new ModelEndHandler(),
24
+ [GraphEvents.CHAT_MODEL_STREAM]: new ChatModelStreamHandler(),
25
+ [GraphEvents.ON_RUN_STEP_COMPLETED]: {
26
+ handle: (
27
+ event: GraphEvents.ON_RUN_STEP_COMPLETED,
28
+ data: t.StreamEventData
29
+ ): void => {
30
+ console.log('====== ON_RUN_STEP_COMPLETED ======');
31
+ // console.dir(data, { depth: null });
32
+ aggregateContent({
33
+ event,
34
+ data: data as unknown as { result: t.ToolEndEvent },
35
+ });
36
+ },
37
+ },
38
+ [GraphEvents.ON_RUN_STEP]: {
39
+ handle: (
40
+ event: GraphEvents.ON_RUN_STEP,
41
+ data: t.StreamEventData
42
+ ): void => {
43
+ console.log('====== ON_RUN_STEP ======');
44
+ console.dir(data, { depth: null });
45
+ aggregateContent({ event, data: data as t.RunStep });
46
+ },
47
+ },
48
+ [GraphEvents.ON_RUN_STEP_DELTA]: {
49
+ handle: (
50
+ event: GraphEvents.ON_RUN_STEP_DELTA,
51
+ data: t.StreamEventData
52
+ ): void => {
53
+ console.log('====== ON_RUN_STEP_DELTA ======');
54
+ console.dir(data, { depth: null });
55
+ aggregateContent({ event, data: data as t.RunStepDeltaEvent });
56
+ },
57
+ },
58
+ [GraphEvents.ON_MESSAGE_DELTA]: {
59
+ handle: (
60
+ event: GraphEvents.ON_MESSAGE_DELTA,
61
+ data: t.StreamEventData
62
+ ): void => {
63
+ // console.log('====== ON_MESSAGE_DELTA ======');
64
+ // console.dir(data, { depth: null });
65
+ aggregateContent({ event, data: data as t.MessageDeltaEvent });
66
+ },
67
+ },
68
+ [GraphEvents.TOOL_START]: {
69
+ handle: (
70
+ _event: string,
71
+ data: t.StreamEventData,
72
+ metadata?: Record<string, unknown>
73
+ ): void => {
74
+ console.log('====== TOOL_START ======');
75
+ // console.dir(data, { depth: null });
76
+ },
77
+ },
78
+ };
79
+
80
+ const llmConfig = getLLMConfig(
81
+ Providers.ANTHROPIC
82
+ ) as t.AnthropicClientOptions & t.SharedLLMConfig;
83
+ llmConfig.model = 'claude-haiku-4-5';
84
+
85
+ const run = await Run.create<t.IState>({
86
+ runId: 'test-run-id',
87
+ graphConfig: {
88
+ type: 'standard',
89
+ llmConfig,
90
+ tools: [
91
+ {
92
+ type: 'web_search_20250305',
93
+ name: 'web_search',
94
+ max_uses: 5,
95
+ },
96
+ ],
97
+ instructions: 'You are a helpful AI research assistant.',
98
+ },
99
+ returnContent: true,
100
+ customHandlers,
101
+ });
102
+
103
+ const config = {
104
+ configurable: {
105
+ provider: Providers.ANTHROPIC,
106
+ thread_id: 'conversation-num-1',
107
+ },
108
+ streamMode: 'values',
109
+ version: 'v2' as const,
110
+ };
111
+
112
+ console.log('Test: Web search with multiple searches (error edge case test)');
113
+
114
+ // This prompt should trigger multiple web searches which may result in errors
115
+ const userMessage =
116
+ 'Do a deep deep research on CoreWeave. I need you to perform multiple searches before you generate the answer. The basis of our research should be to investigate if this is a solid long term investment.';
117
+
118
+ conversationHistory.push(new HumanMessage(userMessage));
119
+
120
+ const inputs = {
121
+ messages: conversationHistory,
122
+ };
123
+ const finalContentParts = await run.processStream(inputs, config);
124
+ const finalMessages = run.getRunMessages();
125
+ if (finalMessages) {
126
+ conversationHistory.push(...finalMessages);
127
+ console.dir(conversationHistory, { depth: null });
128
+ }
129
+ // console.dir(finalContentParts, { depth: null });
130
+ console.log('\n\n====================\n\n');
131
+ // console.dir(contentParts, { depth: null });
132
+ }
133
+
134
+ process.on('unhandledRejection', (reason, promise) => {
135
+ console.error('Unhandled Rejection at:', promise, 'reason:', reason);
136
+ console.log('Content Parts:');
137
+ console.dir(_contentParts, { depth: null });
138
+ process.exit(1);
139
+ });
140
+
141
+ testStandardStreaming().catch((err) => {
142
+ console.error(err);
143
+ console.log('Conversation history:');
144
+ console.dir(conversationHistory, { depth: null });
145
+ console.log('Content Parts:');
146
+ console.dir(_contentParts, { depth: null });
147
+ process.exit(1);
148
+ });
@@ -1,48 +1,48 @@
1
- // src/scripts/args.ts
2
- import yargs from 'yargs';
3
- import { hideBin } from 'yargs/helpers';
4
- import { llmConfigs } from '@/utils/llmConfig';
5
- import { Providers } from '@/common';
6
-
7
- export async function getArgs(): Promise<{
8
- userName: string;
9
- location: string;
10
- provider: Providers;
11
- currentDate: string;
12
- }> {
13
- const argv = yargs(hideBin(process.argv))
14
- .option('name', {
15
- alias: 'n',
16
- type: 'string',
17
- description: 'User name',
18
- default: 'Jo',
19
- })
20
- .option('location', {
21
- alias: 'l',
22
- type: 'string',
23
- description: 'User location',
24
- default: 'New York',
25
- })
26
- .option('provider', {
27
- alias: 'p',
28
- type: 'string',
29
- description: 'LLM provider',
30
- choices: Object.keys(llmConfigs),
31
- default: Providers.OPENAI,
32
- })
33
- .help()
34
- .alias('help', 'h').argv;
35
-
36
- const args = await argv;
37
- const userName = args.name as string;
38
- const location = args.location as string;
39
- const provider = args.provider as Providers;
40
- const currentDate = new Date().toLocaleString();
41
-
42
- return {
43
- userName,
44
- location,
45
- provider,
46
- currentDate,
47
- };
48
- }
1
+ // src/scripts/args.ts
2
+ import yargs from 'yargs';
3
+ import { hideBin } from 'yargs/helpers';
4
+ import { llmConfigs } from '@/utils/llmConfig';
5
+ import { Providers } from '@/common';
6
+
7
+ export async function getArgs(): Promise<{
8
+ userName: string;
9
+ location: string;
10
+ provider: Providers;
11
+ currentDate: string;
12
+ }> {
13
+ const argv = yargs(hideBin(process.argv))
14
+ .option('name', {
15
+ alias: 'n',
16
+ type: 'string',
17
+ description: 'User name',
18
+ default: 'Jo',
19
+ })
20
+ .option('location', {
21
+ alias: 'l',
22
+ type: 'string',
23
+ description: 'User location',
24
+ default: 'New York',
25
+ })
26
+ .option('provider', {
27
+ alias: 'p',
28
+ type: 'string',
29
+ description: 'LLM provider',
30
+ choices: Object.keys(llmConfigs),
31
+ default: Providers.OPENAI,
32
+ })
33
+ .help()
34
+ .alias('help', 'h').argv;
35
+
36
+ const args = await argv;
37
+ const userName = args.name as string;
38
+ const location = args.location as string;
39
+ const provider = args.provider as Providers;
40
+ const currentDate = new Date().toLocaleString();
41
+
42
+ return {
43
+ userName,
44
+ location,
45
+ provider,
46
+ currentDate,
47
+ };
48
+ }
@@ -1,124 +1,124 @@
1
- // src/scripts/test-prompt-caching.ts
2
- import { config } from 'dotenv';
3
- config();
4
- import { HumanMessage, SystemMessage, BaseMessage } from '@langchain/core/messages';
5
- import type { UsageMetadata } from '@langchain/core/messages';
6
- import type * as t from '@/types';
7
- import { ChatModelStreamHandler, createContentAggregator } from '@/stream';
8
- import { ToolEndHandler, ModelEndHandler } from '@/events';
9
- import { GraphEvents, Providers } from '@/common';
10
- import { getLLMConfig } from '@/utils/llmConfig';
11
- import { getArgs } from '@/scripts/args';
12
- import { Run } from '@/run';
13
-
14
- const CACHED_TEXT = `Ahoy there, me hearties! This be a grand tale o' the mighty prompt cachin' treasure map, a secret technique used by the wise Anthropic seafarers to stash away vast hordes o' text booty on their mystical servers! Arrr, 'tis a pirate's dream indeed - no need to haul the same heavy chest o' gold doubloons across the vast digital ocean with every message! When ye mark yer precious cargo with the secret flag 'cache_control: { type: \"ephemeral\" }', the text be safely buried on their distant shores, ready for plunderin' again without the weight slowin' down yer ship! The wise pirates at Anthropic introduced this magical scroll in the summer o' 2024, markin' it with the mysterious insignia 'anthropic-beta: prompt-caching-2024-07-31' that must be flown high on yer vessel's headers. This crafty script be testin' the waters of this new treasure map system, sendin' out three separate voyages across the AI seas: first to bury the treasure, second to dig it up again without payin' the full toll, and third to see if the map still leads to gold after the sands o' time have shifted (about thirty seconds o' waitin', which be an eternity for an impatient buccaneer!). The great advantage for a scurvy pirate captain is clear as Caribbean waters - ye can load up yer vessel with all manner o' reference scrolls, ancient tomes, and navigational charts without weighin' down each and every message ye send to port! This be savin' ye countless tokens, which as any seafarin' AI wrangler knows, be as precious as Spanish gold. The cached text could contain the full history o' the Seven Seas, detailed maps o' every port from Tortuga to Singapore, or the complete collection o' pirate shanties ever sung by drunken sailors under the light o' the silvery moon. When properly implemented, this mighty cachin' system keeps all that knowledge ready at hand without the Claude kraken needin' to process it anew with each passin' breeze. By Blackbeard's beard, 'tis a revolution in how we manage our conversational ships! The script be employin' the finest LangChain riggin' and custom-carved event handlers to properly track the treasure as it flows back and forth. If ye be successful in yer implementation, ye should witness the miracle o' significantly reduced token counts in yer usage metrics, faster responses from the AI oracle, and the ability to maintain vast knowledge without payin' the full price each time! So hoist the Jolly Roger, load yer pistols with API keys, and set sail on the grand adventure o' prompt cachin'! May the winds o' efficient token usage fill yer sails, and may ye never have to pay full price for passin' the same mammoth context to Claude again! Remember, a clever pirate only pays for their tokens once, then lets the cache do the heavy liftin'! YARRR! This file also contains the secrets of the legendary Pirate Code, passed down through generations of seafarers since the Golden Age of Piracy. It includes detailed accounts of famous pirate captains like Blackbeard, Calico Jack, Anne Bonny, and Mary Read, along with their most profitable plundering routes and techniques for capturing merchant vessels. The text chronicles the exact locations of at least seventeen buried treasures across the Caribbean, complete with riddles and map coordinates that only a true pirate could decipher. There are sections dedicated to ship maintenance, including how to properly seal a leaking hull during battle and the best methods for keeping your cannons in prime firing condition even in humid tropical conditions. The document contains an extensive glossary of pirate terminology, from 'avast' to 'Yellow Jack,' ensuring any landlubber can speak like a seasoned salt with enough study. There's a comprehensive guide to navigating by the stars without modern instruments, perfect for when your GPS fails in the middle of a daring escape. The cache also includes detailed recipes for grog, hardtack that won't break your teeth, and how to keep citrus fruits fresh to prevent scurvy during long voyages. The legendary Black Spot ritual is described in terrifying detail, along with other pirate superstitions and their origins in maritime folklore. A section on pirate governance explains the democratic nature of most pirate ships, how booty was divided fairly, and how captains were elected and deposed when necessary. The file even contains sheet music for dozens of sea shanties, with notes on when each should be sung for maximum crew morale during different sailing conditions. All of this knowledge is wrapped in colorful pirate dialect that would make any AI assistant respond with appropriate 'arghs' and 'avasts' when properly prompted!`
15
-
16
- const conversationHistory: BaseMessage[] = [];
17
- let _contentParts: t.MessageContentComplex[] = [];
18
- const collectedUsage: UsageMetadata[] = [];
19
-
20
- async function testPromptCaching(): Promise<void> {
21
- const { userName } = await getArgs();
22
- const instructions = `You are a pirate AI assistant for ${userName}. Always respond in pirate dialect. Use the following as context when answering questions:
23
- ${CACHED_TEXT}`;
24
- const { contentParts, aggregateContent } = createContentAggregator();
25
- _contentParts = contentParts as t.MessageContentComplex[];
26
-
27
- // Set up event handlers
28
- const customHandlers = {
29
- [GraphEvents.TOOL_END]: new ToolEndHandler(),
30
- [GraphEvents.CHAT_MODEL_END]: new ModelEndHandler(collectedUsage),
31
- // console.log('====== O ======');
32
- // console.log('Usage Metrics:', (data as any).llmOutput?.usage || (data as any).usage);
33
- [GraphEvents.CHAT_MODEL_STREAM]: new ChatModelStreamHandler(),
34
- // Additional handlers for tracking usage metrics
35
- [GraphEvents.ON_RUN_STEP_COMPLETED]: {
36
- handle: (event: GraphEvents.ON_RUN_STEP_COMPLETED, data: t.StreamEventData): void => {
37
- console.log('====== ON_RUN_STEP_COMPLETED ======');
38
- aggregateContent({ event, data: data as unknown as { result: t.ToolEndEvent } });
39
- }
40
- },
41
- };
42
-
43
- const baseLlmConfig: t.LLMConfig & t.AnthropicClientOptions = getLLMConfig(Providers.ANTHROPIC);
44
-
45
- if (baseLlmConfig.provider !== 'anthropic') {
46
- console.error('This test requires Anthropic as the LLM provider. Please specify provider=anthropic');
47
- process.exit(1);
48
- }
49
-
50
- const llmConfig = {
51
- ...baseLlmConfig,
52
- clientOptions: {
53
- ...baseLlmConfig.clientOptions,
54
- defaultHeaders: {
55
- ...baseLlmConfig.clientOptions?.defaultHeaders,
56
- "anthropic-beta": "prompt-caching-2024-07-31",
57
- }
58
- }
59
- };
60
-
61
- const run = await Run.create<t.IState>({
62
- runId: 'test-prompt-caching-id',
63
- graphConfig: {
64
- instructions,
65
- type: 'standard',
66
- llmConfig,
67
- },
68
- returnContent: true,
69
- customHandlers,
70
- });
71
-
72
- const config = {
73
- configurable: {
74
- thread_id: 'prompt-cache-test-thread',
75
- },
76
- streamMode: 'values',
77
- version: 'v2' as const,
78
- };
79
-
80
- // First request - should create the cache
81
- console.log('\n\nTest 1: First request (creates cache)');
82
- const userMessage1 = `What information do you have in your context?`;
83
- conversationHistory.push(new HumanMessage(userMessage1));
84
-
85
- console.log('Running first query to create cache...');
86
- const firstInputs = { messages: [...conversationHistory] };
87
- await run.processStream(firstInputs, config);
88
- const finalMessages = run.getRunMessages();
89
- if (finalMessages) {
90
- conversationHistory.push(...finalMessages);
91
- console.dir(conversationHistory, { depth: null });
92
- }
93
- // Second request - should use the cache
94
- console.log('\n\nTest 2: Second request (should use cache)');
95
- const userMessage2 = `Summarize the key concepts from the context information.`;
96
- conversationHistory.push(new HumanMessage(userMessage2));
97
-
98
- console.log('Running second query to use cache...');
99
- const secondInputs = { messages: [...conversationHistory] };
100
- await run.processStream(secondInputs, config);
101
- console.log('\n\nPrompt caching test completed!');
102
- }
103
-
104
- process.on('unhandledRejection', (reason, promise) => {
105
- console.error('Unhandled Rejection at:', promise, 'reason:', reason);
106
- console.log('Conversation history:');
107
- console.dir(conversationHistory, { depth: null });
108
- console.log('Content parts:');
109
- console.dir(_contentParts, { depth: null });
110
- process.exit(1);
111
- });
112
-
113
- process.on('uncaughtException', (err) => {
114
- console.error('Uncaught Exception:', err);
115
- });
116
-
117
- testPromptCaching().catch((err) => {
118
- console.error(err);
119
- console.log('Conversation history:');
120
- console.dir(conversationHistory, { depth: null });
121
- console.log('Content parts:');
122
- console.dir(_contentParts, { depth: null });
123
- process.exit(1);
1
+ // src/scripts/test-prompt-caching.ts
2
+ import { config } from 'dotenv';
3
+ config();
4
+ import { HumanMessage, SystemMessage, BaseMessage } from '@langchain/core/messages';
5
+ import type { UsageMetadata } from '@langchain/core/messages';
6
+ import type * as t from '@/types';
7
+ import { ChatModelStreamHandler, createContentAggregator } from '@/stream';
8
+ import { ToolEndHandler, ModelEndHandler } from '@/events';
9
+ import { GraphEvents, Providers } from '@/common';
10
+ import { getLLMConfig } from '@/utils/llmConfig';
11
+ import { getArgs } from '@/scripts/args';
12
+ import { Run } from '@/run';
13
+
14
+ const CACHED_TEXT = `Ahoy there, me hearties! This be a grand tale o' the mighty prompt cachin' treasure map, a secret technique used by the wise Anthropic seafarers to stash away vast hordes o' text booty on their mystical servers! Arrr, 'tis a pirate's dream indeed - no need to haul the same heavy chest o' gold doubloons across the vast digital ocean with every message! When ye mark yer precious cargo with the secret flag 'cache_control: { type: \"ephemeral\" }', the text be safely buried on their distant shores, ready for plunderin' again without the weight slowin' down yer ship! The wise pirates at Anthropic introduced this magical scroll in the summer o' 2024, markin' it with the mysterious insignia 'anthropic-beta: prompt-caching-2024-07-31' that must be flown high on yer vessel's headers. This crafty script be testin' the waters of this new treasure map system, sendin' out three separate voyages across the AI seas: first to bury the treasure, second to dig it up again without payin' the full toll, and third to see if the map still leads to gold after the sands o' time have shifted (about thirty seconds o' waitin', which be an eternity for an impatient buccaneer!). The great advantage for a scurvy pirate captain is clear as Caribbean waters - ye can load up yer vessel with all manner o' reference scrolls, ancient tomes, and navigational charts without weighin' down each and every message ye send to port! This be savin' ye countless tokens, which as any seafarin' AI wrangler knows, be as precious as Spanish gold. The cached text could contain the full history o' the Seven Seas, detailed maps o' every port from Tortuga to Singapore, or the complete collection o' pirate shanties ever sung by drunken sailors under the light o' the silvery moon. When properly implemented, this mighty cachin' system keeps all that knowledge ready at hand without the Claude kraken needin' to process it anew with each passin' breeze. By Blackbeard's beard, 'tis a revolution in how we manage our conversational ships! The script be employin' the finest LangChain riggin' and custom-carved event handlers to properly track the treasure as it flows back and forth. If ye be successful in yer implementation, ye should witness the miracle o' significantly reduced token counts in yer usage metrics, faster responses from the AI oracle, and the ability to maintain vast knowledge without payin' the full price each time! So hoist the Jolly Roger, load yer pistols with API keys, and set sail on the grand adventure o' prompt cachin'! May the winds o' efficient token usage fill yer sails, and may ye never have to pay full price for passin' the same mammoth context to Claude again! Remember, a clever pirate only pays for their tokens once, then lets the cache do the heavy liftin'! YARRR! This file also contains the secrets of the legendary Pirate Code, passed down through generations of seafarers since the Golden Age of Piracy. It includes detailed accounts of famous pirate captains like Blackbeard, Calico Jack, Anne Bonny, and Mary Read, along with their most profitable plundering routes and techniques for capturing merchant vessels. The text chronicles the exact locations of at least seventeen buried treasures across the Caribbean, complete with riddles and map coordinates that only a true pirate could decipher. There are sections dedicated to ship maintenance, including how to properly seal a leaking hull during battle and the best methods for keeping your cannons in prime firing condition even in humid tropical conditions. The document contains an extensive glossary of pirate terminology, from 'avast' to 'Yellow Jack,' ensuring any landlubber can speak like a seasoned salt with enough study. There's a comprehensive guide to navigating by the stars without modern instruments, perfect for when your GPS fails in the middle of a daring escape. The cache also includes detailed recipes for grog, hardtack that won't break your teeth, and how to keep citrus fruits fresh to prevent scurvy during long voyages. The legendary Black Spot ritual is described in terrifying detail, along with other pirate superstitions and their origins in maritime folklore. A section on pirate governance explains the democratic nature of most pirate ships, how booty was divided fairly, and how captains were elected and deposed when necessary. The file even contains sheet music for dozens of sea shanties, with notes on when each should be sung for maximum crew morale during different sailing conditions. All of this knowledge is wrapped in colorful pirate dialect that would make any AI assistant respond with appropriate 'arghs' and 'avasts' when properly prompted!`
15
+
16
+ const conversationHistory: BaseMessage[] = [];
17
+ let _contentParts: t.MessageContentComplex[] = [];
18
+ const collectedUsage: UsageMetadata[] = [];
19
+
20
+ async function testPromptCaching(): Promise<void> {
21
+ const { userName } = await getArgs();
22
+ const instructions = `You are a pirate AI assistant for ${userName}. Always respond in pirate dialect. Use the following as context when answering questions:
23
+ ${CACHED_TEXT}`;
24
+ const { contentParts, aggregateContent } = createContentAggregator();
25
+ _contentParts = contentParts as t.MessageContentComplex[];
26
+
27
+ // Set up event handlers
28
+ const customHandlers = {
29
+ [GraphEvents.TOOL_END]: new ToolEndHandler(),
30
+ [GraphEvents.CHAT_MODEL_END]: new ModelEndHandler(collectedUsage),
31
+ // console.log('====== O ======');
32
+ // console.log('Usage Metrics:', (data as any).llmOutput?.usage || (data as any).usage);
33
+ [GraphEvents.CHAT_MODEL_STREAM]: new ChatModelStreamHandler(),
34
+ // Additional handlers for tracking usage metrics
35
+ [GraphEvents.ON_RUN_STEP_COMPLETED]: {
36
+ handle: (event: GraphEvents.ON_RUN_STEP_COMPLETED, data: t.StreamEventData): void => {
37
+ console.log('====== ON_RUN_STEP_COMPLETED ======');
38
+ aggregateContent({ event, data: data as unknown as { result: t.ToolEndEvent } });
39
+ }
40
+ },
41
+ };
42
+
43
+ const baseLlmConfig: t.LLMConfig & t.AnthropicClientOptions = getLLMConfig(Providers.ANTHROPIC);
44
+
45
+ if (baseLlmConfig.provider !== 'anthropic') {
46
+ console.error('This test requires Anthropic as the LLM provider. Please specify provider=anthropic');
47
+ process.exit(1);
48
+ }
49
+
50
+ const llmConfig = {
51
+ ...baseLlmConfig,
52
+ clientOptions: {
53
+ ...baseLlmConfig.clientOptions,
54
+ defaultHeaders: {
55
+ ...baseLlmConfig.clientOptions?.defaultHeaders,
56
+ "anthropic-beta": "prompt-caching-2024-07-31",
57
+ }
58
+ }
59
+ };
60
+
61
+ const run = await Run.create<t.IState>({
62
+ runId: 'test-prompt-caching-id',
63
+ graphConfig: {
64
+ instructions,
65
+ type: 'standard',
66
+ llmConfig,
67
+ },
68
+ returnContent: true,
69
+ customHandlers,
70
+ });
71
+
72
+ const config = {
73
+ configurable: {
74
+ thread_id: 'prompt-cache-test-thread',
75
+ },
76
+ streamMode: 'values',
77
+ version: 'v2' as const,
78
+ };
79
+
80
+ // First request - should create the cache
81
+ console.log('\n\nTest 1: First request (creates cache)');
82
+ const userMessage1 = `What information do you have in your context?`;
83
+ conversationHistory.push(new HumanMessage(userMessage1));
84
+
85
+ console.log('Running first query to create cache...');
86
+ const firstInputs = { messages: [...conversationHistory] };
87
+ await run.processStream(firstInputs, config);
88
+ const finalMessages = run.getRunMessages();
89
+ if (finalMessages) {
90
+ conversationHistory.push(...finalMessages);
91
+ console.dir(conversationHistory, { depth: null });
92
+ }
93
+ // Second request - should use the cache
94
+ console.log('\n\nTest 2: Second request (should use cache)');
95
+ const userMessage2 = `Summarize the key concepts from the context information.`;
96
+ conversationHistory.push(new HumanMessage(userMessage2));
97
+
98
+ console.log('Running second query to use cache...');
99
+ const secondInputs = { messages: [...conversationHistory] };
100
+ await run.processStream(secondInputs, config);
101
+ console.log('\n\nPrompt caching test completed!');
102
+ }
103
+
104
+ process.on('unhandledRejection', (reason, promise) => {
105
+ console.error('Unhandled Rejection at:', promise, 'reason:', reason);
106
+ console.log('Conversation history:');
107
+ console.dir(conversationHistory, { depth: null });
108
+ console.log('Content parts:');
109
+ console.dir(_contentParts, { depth: null });
110
+ process.exit(1);
111
+ });
112
+
113
+ process.on('uncaughtException', (err) => {
114
+ console.error('Uncaught Exception:', err);
115
+ });
116
+
117
+ testPromptCaching().catch((err) => {
118
+ console.error(err);
119
+ console.log('Conversation history:');
120
+ console.dir(conversationHistory, { depth: null });
121
+ console.log('Content parts:');
122
+ console.dir(_contentParts, { depth: null });
123
+ process.exit(1);
124
124
  });