illuma-agents 1.0.8 → 1.0.10

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 (250) 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/events.cjs +11 -0
  5. package/dist/cjs/events.cjs.map +1 -1
  6. package/dist/cjs/graphs/Graph.cjs +2 -1
  7. package/dist/cjs/graphs/Graph.cjs.map +1 -1
  8. package/dist/cjs/instrumentation.cjs +3 -1
  9. package/dist/cjs/instrumentation.cjs.map +1 -1
  10. package/dist/cjs/llm/anthropic/types.cjs.map +1 -1
  11. package/dist/cjs/llm/anthropic/utils/message_inputs.cjs +79 -2
  12. package/dist/cjs/llm/anthropic/utils/message_inputs.cjs.map +1 -1
  13. package/dist/cjs/llm/anthropic/utils/tools.cjs.map +1 -1
  14. package/dist/cjs/llm/bedrock/index.cjs +99 -0
  15. package/dist/cjs/llm/bedrock/index.cjs.map +1 -0
  16. package/dist/cjs/llm/fake.cjs.map +1 -1
  17. package/dist/cjs/llm/openai/index.cjs +102 -0
  18. package/dist/cjs/llm/openai/index.cjs.map +1 -1
  19. package/dist/cjs/llm/openai/utils/index.cjs +87 -1
  20. package/dist/cjs/llm/openai/utils/index.cjs.map +1 -1
  21. package/dist/cjs/llm/openrouter/index.cjs +175 -1
  22. package/dist/cjs/llm/openrouter/index.cjs.map +1 -1
  23. package/dist/cjs/llm/providers.cjs +13 -16
  24. package/dist/cjs/llm/providers.cjs.map +1 -1
  25. package/dist/cjs/llm/text.cjs.map +1 -1
  26. package/dist/cjs/messages/core.cjs +14 -14
  27. package/dist/cjs/messages/core.cjs.map +1 -1
  28. package/dist/cjs/messages/ids.cjs.map +1 -1
  29. package/dist/cjs/messages/prune.cjs.map +1 -1
  30. package/dist/cjs/run.cjs +18 -1
  31. package/dist/cjs/run.cjs.map +1 -1
  32. package/dist/cjs/splitStream.cjs.map +1 -1
  33. package/dist/cjs/stream.cjs +24 -1
  34. package/dist/cjs/stream.cjs.map +1 -1
  35. package/dist/cjs/tools/ToolNode.cjs +20 -1
  36. package/dist/cjs/tools/ToolNode.cjs.map +1 -1
  37. package/dist/cjs/tools/handlers.cjs +29 -25
  38. package/dist/cjs/tools/handlers.cjs.map +1 -1
  39. package/dist/cjs/tools/search/anthropic.cjs.map +1 -1
  40. package/dist/cjs/tools/search/content.cjs.map +1 -1
  41. package/dist/cjs/tools/search/firecrawl.cjs.map +1 -1
  42. package/dist/cjs/tools/search/format.cjs.map +1 -1
  43. package/dist/cjs/tools/search/highlights.cjs.map +1 -1
  44. package/dist/cjs/tools/search/rerankers.cjs.map +1 -1
  45. package/dist/cjs/tools/search/schema.cjs +27 -25
  46. package/dist/cjs/tools/search/schema.cjs.map +1 -1
  47. package/dist/cjs/tools/search/search.cjs +6 -1
  48. package/dist/cjs/tools/search/search.cjs.map +1 -1
  49. package/dist/cjs/tools/search/serper-scraper.cjs.map +1 -1
  50. package/dist/cjs/tools/search/tool.cjs +182 -35
  51. package/dist/cjs/tools/search/tool.cjs.map +1 -1
  52. package/dist/cjs/tools/search/utils.cjs.map +1 -1
  53. package/dist/cjs/utils/graph.cjs.map +1 -1
  54. package/dist/cjs/utils/llm.cjs +0 -1
  55. package/dist/cjs/utils/llm.cjs.map +1 -1
  56. package/dist/cjs/utils/misc.cjs.map +1 -1
  57. package/dist/cjs/utils/run.cjs.map +1 -1
  58. package/dist/cjs/utils/title.cjs +7 -7
  59. package/dist/cjs/utils/title.cjs.map +1 -1
  60. package/dist/esm/common/enum.mjs +1 -2
  61. package/dist/esm/common/enum.mjs.map +1 -1
  62. package/dist/esm/events.mjs +11 -0
  63. package/dist/esm/events.mjs.map +1 -1
  64. package/dist/esm/graphs/Graph.mjs +2 -1
  65. package/dist/esm/graphs/Graph.mjs.map +1 -1
  66. package/dist/esm/instrumentation.mjs +3 -1
  67. package/dist/esm/instrumentation.mjs.map +1 -1
  68. package/dist/esm/llm/anthropic/types.mjs.map +1 -1
  69. package/dist/esm/llm/anthropic/utils/message_inputs.mjs +79 -2
  70. package/dist/esm/llm/anthropic/utils/message_inputs.mjs.map +1 -1
  71. package/dist/esm/llm/anthropic/utils/tools.mjs.map +1 -1
  72. package/dist/esm/llm/bedrock/index.mjs +97 -0
  73. package/dist/esm/llm/bedrock/index.mjs.map +1 -0
  74. package/dist/esm/llm/fake.mjs.map +1 -1
  75. package/dist/esm/llm/openai/index.mjs +103 -1
  76. package/dist/esm/llm/openai/index.mjs.map +1 -1
  77. package/dist/esm/llm/openai/utils/index.mjs +88 -2
  78. package/dist/esm/llm/openai/utils/index.mjs.map +1 -1
  79. package/dist/esm/llm/openrouter/index.mjs +175 -1
  80. package/dist/esm/llm/openrouter/index.mjs.map +1 -1
  81. package/dist/esm/llm/providers.mjs +2 -5
  82. package/dist/esm/llm/providers.mjs.map +1 -1
  83. package/dist/esm/llm/text.mjs.map +1 -1
  84. package/dist/esm/messages/core.mjs +14 -14
  85. package/dist/esm/messages/core.mjs.map +1 -1
  86. package/dist/esm/messages/ids.mjs.map +1 -1
  87. package/dist/esm/messages/prune.mjs.map +1 -1
  88. package/dist/esm/run.mjs +18 -1
  89. package/dist/esm/run.mjs.map +1 -1
  90. package/dist/esm/splitStream.mjs.map +1 -1
  91. package/dist/esm/stream.mjs +24 -1
  92. package/dist/esm/stream.mjs.map +1 -1
  93. package/dist/esm/tools/ToolNode.mjs +20 -1
  94. package/dist/esm/tools/ToolNode.mjs.map +1 -1
  95. package/dist/esm/tools/handlers.mjs +30 -26
  96. package/dist/esm/tools/handlers.mjs.map +1 -1
  97. package/dist/esm/tools/search/anthropic.mjs.map +1 -1
  98. package/dist/esm/tools/search/content.mjs.map +1 -1
  99. package/dist/esm/tools/search/firecrawl.mjs.map +1 -1
  100. package/dist/esm/tools/search/format.mjs.map +1 -1
  101. package/dist/esm/tools/search/highlights.mjs.map +1 -1
  102. package/dist/esm/tools/search/rerankers.mjs.map +1 -1
  103. package/dist/esm/tools/search/schema.mjs +27 -25
  104. package/dist/esm/tools/search/schema.mjs.map +1 -1
  105. package/dist/esm/tools/search/search.mjs +6 -1
  106. package/dist/esm/tools/search/search.mjs.map +1 -1
  107. package/dist/esm/tools/search/serper-scraper.mjs.map +1 -1
  108. package/dist/esm/tools/search/tool.mjs +182 -35
  109. package/dist/esm/tools/search/tool.mjs.map +1 -1
  110. package/dist/esm/tools/search/utils.mjs.map +1 -1
  111. package/dist/esm/utils/graph.mjs.map +1 -1
  112. package/dist/esm/utils/llm.mjs +0 -1
  113. package/dist/esm/utils/llm.mjs.map +1 -1
  114. package/dist/esm/utils/misc.mjs.map +1 -1
  115. package/dist/esm/utils/run.mjs.map +1 -1
  116. package/dist/esm/utils/title.mjs +7 -7
  117. package/dist/esm/utils/title.mjs.map +1 -1
  118. package/dist/types/common/enum.d.ts +1 -2
  119. package/dist/types/llm/bedrock/index.d.ts +36 -0
  120. package/dist/types/llm/openai/index.d.ts +1 -0
  121. package/dist/types/llm/openai/utils/index.d.ts +10 -1
  122. package/dist/types/llm/openrouter/index.d.ts +4 -1
  123. package/dist/types/tools/search/types.d.ts +2 -0
  124. package/dist/types/types/llm.d.ts +3 -8
  125. package/package.json +16 -12
  126. package/src/common/enum.ts +1 -2
  127. package/src/common/index.ts +1 -1
  128. package/src/events.ts +11 -0
  129. package/src/graphs/Graph.ts +2 -1
  130. package/src/instrumentation.ts +25 -22
  131. package/src/llm/anthropic/llm.spec.ts +1442 -1442
  132. package/src/llm/anthropic/types.ts +140 -140
  133. package/src/llm/anthropic/utils/message_inputs.ts +757 -660
  134. package/src/llm/anthropic/utils/output_parsers.ts +133 -133
  135. package/src/llm/anthropic/utils/tools.ts +29 -29
  136. package/src/llm/bedrock/index.ts +128 -0
  137. package/src/llm/fake.ts +133 -133
  138. package/src/llm/google/llm.spec.ts +3 -1
  139. package/src/llm/google/utils/tools.ts +160 -160
  140. package/src/llm/openai/index.ts +126 -0
  141. package/src/llm/openai/types.ts +24 -24
  142. package/src/llm/openai/utils/index.ts +116 -1
  143. package/src/llm/openai/utils/isReasoningModel.test.ts +90 -90
  144. package/src/llm/openrouter/index.ts +222 -1
  145. package/src/llm/providers.ts +2 -7
  146. package/src/llm/text.ts +94 -94
  147. package/src/messages/core.ts +463 -463
  148. package/src/messages/formatAgentMessages.tools.test.ts +400 -400
  149. package/src/messages/formatMessage.test.ts +693 -693
  150. package/src/messages/ids.ts +26 -26
  151. package/src/messages/prune.ts +567 -567
  152. package/src/messages/shiftIndexTokenCountMap.test.ts +81 -81
  153. package/src/mockStream.ts +98 -98
  154. package/src/prompts/collab.ts +5 -5
  155. package/src/prompts/index.ts +1 -1
  156. package/src/prompts/taskmanager.ts +61 -61
  157. package/src/run.ts +22 -4
  158. package/src/scripts/ant_web_search_edge_case.ts +162 -0
  159. package/src/scripts/ant_web_search_error_edge_case.ts +148 -0
  160. package/src/scripts/args.ts +48 -48
  161. package/src/scripts/caching.ts +123 -123
  162. package/src/scripts/code_exec_files.ts +193 -193
  163. package/src/scripts/empty_input.ts +137 -137
  164. package/src/scripts/memory.ts +97 -97
  165. package/src/scripts/test-tools-before-handoff.ts +1 -5
  166. package/src/scripts/thinking.ts +149 -149
  167. package/src/scripts/tools.ts +1 -4
  168. package/src/specs/anthropic.simple.test.ts +67 -0
  169. package/src/specs/spec.utils.ts +3 -3
  170. package/src/specs/token-distribution-edge-case.test.ts +316 -316
  171. package/src/specs/tool-error.test.ts +193 -193
  172. package/src/splitStream.test.ts +691 -691
  173. package/src/splitStream.ts +234 -234
  174. package/src/stream.test.ts +94 -94
  175. package/src/stream.ts +30 -1
  176. package/src/tools/ToolNode.ts +24 -1
  177. package/src/tools/handlers.ts +32 -28
  178. package/src/tools/search/anthropic.ts +51 -51
  179. package/src/tools/search/content.test.ts +173 -173
  180. package/src/tools/search/content.ts +147 -147
  181. package/src/tools/search/direct-url.test.ts +530 -0
  182. package/src/tools/search/firecrawl.ts +210 -210
  183. package/src/tools/search/format.ts +250 -250
  184. package/src/tools/search/highlights.ts +320 -320
  185. package/src/tools/search/index.ts +2 -2
  186. package/src/tools/search/jina-reranker.test.ts +126 -126
  187. package/src/tools/search/output.md +2775 -2775
  188. package/src/tools/search/rerankers.ts +242 -242
  189. package/src/tools/search/schema.ts +65 -63
  190. package/src/tools/search/search.ts +766 -759
  191. package/src/tools/search/serper-scraper.ts +155 -155
  192. package/src/tools/search/test.html +883 -883
  193. package/src/tools/search/test.md +642 -642
  194. package/src/tools/search/test.ts +159 -159
  195. package/src/tools/search/tool.ts +641 -471
  196. package/src/tools/search/types.ts +689 -687
  197. package/src/tools/search/utils.ts +79 -79
  198. package/src/types/index.ts +6 -6
  199. package/src/types/llm.ts +2 -8
  200. package/src/utils/graph.ts +10 -10
  201. package/src/utils/llm.ts +26 -27
  202. package/src/utils/llmConfig.ts +13 -5
  203. package/src/utils/logging.ts +48 -48
  204. package/src/utils/misc.ts +57 -57
  205. package/src/utils/run.ts +100 -100
  206. package/src/utils/title.ts +165 -165
  207. package/dist/cjs/llm/ollama/index.cjs +0 -70
  208. package/dist/cjs/llm/ollama/index.cjs.map +0 -1
  209. package/dist/cjs/llm/ollama/utils.cjs +0 -158
  210. package/dist/cjs/llm/ollama/utils.cjs.map +0 -1
  211. package/dist/esm/llm/ollama/index.mjs +0 -68
  212. package/dist/esm/llm/ollama/index.mjs.map +0 -1
  213. package/dist/esm/llm/ollama/utils.mjs +0 -155
  214. package/dist/esm/llm/ollama/utils.mjs.map +0 -1
  215. package/dist/types/llm/ollama/index.d.ts +0 -8
  216. package/dist/types/llm/ollama/utils.d.ts +0 -7
  217. package/src/llm/ollama/index.ts +0 -92
  218. package/src/llm/ollama/utils.ts +0 -193
  219. package/src/proto/CollabGraph.ts +0 -269
  220. package/src/proto/TaskManager.ts +0 -243
  221. package/src/proto/collab.ts +0 -200
  222. package/src/proto/collab_design.ts +0 -184
  223. package/src/proto/collab_design_v2.ts +0 -224
  224. package/src/proto/collab_design_v3.ts +0 -255
  225. package/src/proto/collab_design_v4.ts +0 -220
  226. package/src/proto/collab_design_v5.ts +0 -251
  227. package/src/proto/collab_graph.ts +0 -181
  228. package/src/proto/collab_original.ts +0 -123
  229. package/src/proto/example.ts +0 -93
  230. package/src/proto/example_new.ts +0 -68
  231. package/src/proto/example_old.ts +0 -201
  232. package/src/proto/example_test.ts +0 -152
  233. package/src/proto/example_test_anthropic.ts +0 -100
  234. package/src/proto/log_stream.ts +0 -202
  235. package/src/proto/main_collab_community_event.ts +0 -133
  236. package/src/proto/main_collab_design_v2.ts +0 -96
  237. package/src/proto/main_collab_design_v4.ts +0 -100
  238. package/src/proto/main_collab_design_v5.ts +0 -135
  239. package/src/proto/main_collab_global_analysis.ts +0 -122
  240. package/src/proto/main_collab_hackathon_event.ts +0 -153
  241. package/src/proto/main_collab_space_mission.ts +0 -153
  242. package/src/proto/main_philosophy.ts +0 -210
  243. package/src/proto/original_script.ts +0 -126
  244. package/src/proto/standard.ts +0 -100
  245. package/src/proto/stream.ts +0 -56
  246. package/src/proto/tasks.ts +0 -118
  247. package/src/proto/tools/global_analysis_tools.ts +0 -86
  248. package/src/proto/tools/space_mission_tools.ts +0 -60
  249. package/src/proto/vertexai.ts +0 -54
  250. package/src/scripts/image.ts +0 -178
@@ -1,193 +0,0 @@
1
- import {
2
- AIMessage,
3
- AIMessageChunk,
4
- BaseMessage,
5
- HumanMessage,
6
- MessageContentText,
7
- SystemMessage,
8
- ToolMessage,
9
- UsageMetadata,
10
- } from '@langchain/core/messages';
11
- import type {
12
- Message as OllamaMessage,
13
- ToolCall as OllamaToolCall,
14
- } from 'ollama';
15
- import { v4 as uuidv4 } from 'uuid';
16
-
17
- export function convertOllamaMessagesToLangChain(
18
- messages: OllamaMessage,
19
- extra?: {
20
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
21
- responseMetadata?: Record<string, any>;
22
- usageMetadata?: UsageMetadata;
23
- }
24
- ): AIMessageChunk {
25
- const additional_kwargs: BaseMessage['additional_kwargs'] = {};
26
- if ('thinking' in messages) {
27
- additional_kwargs.reasoning_content = messages.thinking as string;
28
- }
29
- return new AIMessageChunk({
30
- content: messages.content || '',
31
- tool_call_chunks: messages.tool_calls?.map((tc) => ({
32
- name: tc.function.name,
33
- args: JSON.stringify(tc.function.arguments),
34
- type: 'tool_call_chunk',
35
- index: 0,
36
- id: uuidv4(),
37
- })),
38
- response_metadata: extra?.responseMetadata,
39
- usage_metadata: extra?.usageMetadata,
40
- additional_kwargs,
41
- });
42
- }
43
-
44
- function extractBase64FromDataUrl(dataUrl: string): string {
45
- const match = dataUrl.match(/^data:.*?;base64,(.*)$/);
46
- return match ? match[1] : '';
47
- }
48
-
49
- function convertAMessagesToOllama(messages: AIMessage): OllamaMessage[] {
50
- if (typeof messages.content === 'string') {
51
- return [
52
- {
53
- role: 'assistant',
54
- content: messages.content,
55
- },
56
- ];
57
- }
58
-
59
- const textFields = messages.content.filter(
60
- (c) => c.type === 'text' && typeof c.text === 'string'
61
- );
62
- const textMessages = (textFields as MessageContentText[]).map((c) => ({
63
- role: 'assistant',
64
- content: c.text,
65
- }));
66
- let toolCallMsgs: OllamaMessage | undefined;
67
-
68
- if (
69
- messages.content.find((c) => c.type === 'tool_use') &&
70
- messages.tool_calls?.length
71
- ) {
72
- // `tool_use` content types are accepted if the message has tool calls
73
- const toolCalls: OllamaToolCall[] | undefined = messages.tool_calls.map(
74
- (tc) => ({
75
- id: tc.id,
76
- type: 'function',
77
- function: {
78
- name: tc.name,
79
- arguments: tc.args,
80
- },
81
- })
82
- );
83
-
84
- if (toolCalls) {
85
- toolCallMsgs = {
86
- role: 'assistant',
87
- tool_calls: toolCalls,
88
- content: '',
89
- };
90
- }
91
- } else if (
92
- messages.content.find((c) => c.type === 'tool_use') &&
93
- !messages.tool_calls?.length
94
- ) {
95
- throw new Error(
96
- '\'tool_use\' content type is not supported without tool calls.'
97
- );
98
- }
99
-
100
- return [...textMessages, ...(toolCallMsgs ? [toolCallMsgs] : [])];
101
- }
102
-
103
- function convertHumanGenericMessagesToOllama(
104
- message: HumanMessage
105
- ): OllamaMessage[] {
106
- if (typeof message.content === 'string') {
107
- return [
108
- {
109
- role: 'user',
110
- content: message.content,
111
- },
112
- ];
113
- }
114
- return message.content.map((c) => {
115
- if (c.type === 'text') {
116
- return {
117
- role: 'user',
118
- content: c.text,
119
- };
120
- } else if (c.type === 'image_url') {
121
- if (typeof c.image_url === 'string') {
122
- return {
123
- role: 'user',
124
- content: '',
125
- images: [extractBase64FromDataUrl(c.image_url)],
126
- };
127
- } else if (c.image_url.url && typeof c.image_url.url === 'string') {
128
- return {
129
- role: 'user',
130
- content: '',
131
- images: [extractBase64FromDataUrl(c.image_url.url)],
132
- };
133
- }
134
- }
135
- throw new Error(`Unsupported content type: ${c.type}`);
136
- });
137
- }
138
-
139
- function convertSystemMessageToOllama(message: SystemMessage): OllamaMessage[] {
140
- if (typeof message.content === 'string') {
141
- return [
142
- {
143
- role: 'system',
144
- content: message.content,
145
- },
146
- ];
147
- } else if (
148
- message.content.every(
149
- (c) => c.type === 'text' && typeof c.text === 'string'
150
- )
151
- ) {
152
- return (message.content as MessageContentText[]).map((c) => ({
153
- role: 'system',
154
- content: c.text,
155
- }));
156
- } else {
157
- throw new Error(
158
- `Unsupported content type(s): ${message.content
159
- .map((c) => c.type)
160
- .join(', ')}`
161
- );
162
- }
163
- }
164
-
165
- function convertToolMessageToOllama(message: ToolMessage): OllamaMessage[] {
166
- if (typeof message.content !== 'string') {
167
- throw new Error('Non string tool message content is not supported');
168
- }
169
- return [
170
- {
171
- role: 'tool',
172
- content: message.content,
173
- },
174
- ];
175
- }
176
-
177
- export function convertToOllamaMessages(
178
- messages: BaseMessage[]
179
- ): OllamaMessage[] {
180
- return messages.flatMap((msg) => {
181
- if (['human', 'generic'].includes(msg._getType())) {
182
- return convertHumanGenericMessagesToOllama(msg);
183
- } else if (msg._getType() === 'ai') {
184
- return convertAMessagesToOllama(msg);
185
- } else if (msg._getType() === 'system') {
186
- return convertSystemMessageToOllama(msg);
187
- } else if (msg._getType() === 'tool') {
188
- return convertToolMessageToOllama(msg as ToolMessage);
189
- } else {
190
- throw new Error(`Unsupported message type: ${msg._getType()}`);
191
- }
192
- });
193
- }
@@ -1,269 +0,0 @@
1
- // src/graphs/CollabGraph.ts
2
- import { AIMessageChunk, BaseMessage, HumanMessage } from '@langchain/core/messages';
3
- import { END, StateGraphArgs, START, StateGraph, MemorySaver } from '@langchain/langgraph';
4
- import { AgentExecutor, createOpenAIToolsAgent } from 'langchain/agents';
5
- import { ChatPromptTemplate, MessagesPlaceholder } from '@langchain/core/prompts';
6
- import type { StructuredTool } from '@langchain/core/tools';
7
- import { Runnable, RunnableConfig } from '@langchain/core/runnables';
8
- import { JsonOutputToolsParser } from 'langchain/output_parsers';
9
- import { Providers } from '@/common';
10
- import { getChatModelClass } from '@/llm/providers';
11
- import { Graph } from '../graphs/Graph';
12
- import type * as t from '@/types';
13
- import { supervisorPrompt } from '@/prompts/collab';
14
-
15
- export interface CollabAgentStateChannels {
16
- messages: BaseMessage[];
17
- next: string;
18
- [key: string]: any;
19
- }
20
-
21
- export interface CollabMember {
22
- name: string;
23
- systemPrompt: string;
24
- tools: any[];
25
- llmConfig: t.LLMConfig;
26
- }
27
-
28
- interface SupervisorConfig {
29
- systemPrompt?: string;
30
- llmConfig: t.LLMConfig;
31
- }
32
-
33
- export class CollabGraph extends Graph<CollabAgentStateChannels, string> {
34
- resetValues(): void {
35
- throw new Error('Method not implemented.');
36
- }
37
- getFinalMessage(): AIMessageChunk | undefined {
38
- throw new Error('Method not implemented.');
39
- }
40
- generateStepId(stepKey: string): [string, number] {
41
- throw new Error('Method not implemented.');
42
- }
43
- getKeyList(metadata: Record<string, unknown> | undefined): (string | number | undefined)[] {
44
- throw new Error('Method not implemented.');
45
- }
46
- getStepKey(metadata: Record<string, unknown> | undefined): string {
47
- throw new Error('Method not implemented.');
48
- }
49
- checkKeyList(keyList: (string | number | undefined)[]): boolean {
50
- throw new Error('Method not implemented.');
51
- }
52
- getStepIdByKey(stepKey: string, index?: number): string {
53
- throw new Error('Method not implemented.');
54
- }
55
- getRunStep(stepId: string): t.RunStep | undefined {
56
- throw new Error('Method not implemented.');
57
- }
58
- dispatchRunStep(stepKey: string, stepDetails: t.StepDetails): void {
59
- throw new Error('Method not implemented.');
60
- }
61
- dispatchRunStepDelta(id: string, delta: t.ToolCallDelta): void {
62
- throw new Error('Method not implemented.');
63
- }
64
- dispatchMessageDelta(id: string, delta: t.MessageDelta): void {
65
- throw new Error('Method not implemented.');
66
- }
67
- private graph: t.CompiledWorkflow<CollabAgentStateChannels, Partial<CollabAgentStateChannels>, string> | null = null;
68
- private members: t.Member[];
69
- private supervisorConfig: SupervisorConfig;
70
- private supervisorChain: Runnable | null = null;
71
-
72
- constructor(members: t.Member[], supervisorConfig: SupervisorConfig) {
73
- super();
74
- this.members = members;
75
- this.supervisorConfig = supervisorConfig;
76
- }
77
-
78
- async initialize(): Promise<void> {
79
- const memberNames = this.members.map(member => member.name);
80
- const systemPrompt = this.supervisorConfig.systemPrompt || supervisorPrompt;
81
- const options = [END, ...memberNames];
82
- this.supervisorChain = await this.createSupervisorChain(systemPrompt, options);
83
- }
84
-
85
- createGraphState(): StateGraphArgs<CollabAgentStateChannels>['channels'] {
86
- return {
87
- messages: {
88
- value: (x?: BaseMessage[], y?: BaseMessage[]) => (x ?? []).concat(y ?? []),
89
- default: () => [],
90
- },
91
- next: {
92
- value: (x?: string, y?: string) => y ?? x ?? END,
93
- default: () => END,
94
- },
95
- };
96
- }
97
-
98
- initializeTools(tools: StructuredTool[]): any {
99
- // This method is not used in the collaborative graph
100
- return null;
101
- }
102
-
103
- initializeModel(provider: Providers, clientOptions: Record<string, unknown>, tools: any[]) {
104
- const LLMClass = getChatModelClass(provider);
105
- if (!LLMClass) {
106
- throw new Error(`Unsupported LLM provider: ${provider}`);
107
- }
108
- return new LLMClass(clientOptions);
109
- }
110
-
111
- createCallModel(boundModel: any) {
112
- // This method is not directly used in the collaborative graph
113
- return async (state: CollabAgentStateChannels, config?: RunnableConfig) => {
114
- return { messages: [] };
115
- };
116
- }
117
-
118
- private async createAgent(
119
- llmConfig: t.LLMConfig,
120
- tools: any[],
121
- systemPrompt: string
122
- ): Promise<AgentExecutor> {
123
- const { provider, ...clientOptions } = llmConfig;
124
- const LLMClass = getChatModelClass(provider);
125
- if (!LLMClass) {
126
- throw new Error(`Unsupported LLM provider: ${provider}`);
127
- }
128
- const llm = new LLMClass(clientOptions);
129
-
130
- const prompt = await ChatPromptTemplate.fromMessages([
131
- ['system', systemPrompt],
132
- new MessagesPlaceholder('messages'),
133
- new MessagesPlaceholder('agent_scratchpad'),
134
- ]);
135
- const agent = await createOpenAIToolsAgent({ llm, tools, prompt });
136
- return new AgentExecutor({ agent, tools });
137
- }
138
-
139
- createWorkflow(
140
- graphState: StateGraphArgs<CollabAgentStateChannels>['channels'],
141
- callModel?: any,
142
- toolNode?: any
143
- ): t.CompiledWorkflow<CollabAgentStateChannels, Partial<CollabAgentStateChannels>, string> {
144
- if (!this.supervisorChain) {
145
- throw new Error('CollabGraph not initialized. Call initialize() first.');
146
- }
147
-
148
- const workflow = new StateGraph<CollabAgentStateChannels, Partial<CollabAgentStateChannels>, string>({
149
- channels: graphState,
150
- });
151
-
152
- // Dynamically create agents and add nodes for each member
153
- for (const member of this.members) {
154
- const node = async (
155
- state: CollabAgentStateChannels,
156
- config?: RunnableConfig,
157
- ) => {
158
- const agent = await this.createAgent(member.llmConfig, member.tools, member.systemPrompt);
159
- const agentPromise = agent.invoke(state, config);
160
-
161
- // Store the promise in the state
162
- await this.graph?.updateState(config ?? {}, {
163
- [`${member.name}Promise`]: agentPromise,
164
- });
165
-
166
- const result = await agentPromise;
167
- return {
168
- messages: [
169
- new HumanMessage({ content: result.output, name: member.name }),
170
- ],
171
- };
172
- };
173
- workflow.addNode(member.name, node);
174
- workflow.addEdge(member.name, 'supervisor');
175
- }
176
-
177
- const supervisorNode = async (
178
- state: CollabAgentStateChannels,
179
- config?: RunnableConfig,
180
- ) => {
181
- // Get the current state
182
- const currentState = await this.graph?.getState(config ?? {});
183
-
184
- // Wait for all member promises to resolve
185
- const memberPromises = this.members.map(member => currentState?.[`${member.name}Promise` as keyof typeof currentState]);
186
- await Promise.all(memberPromises);
187
-
188
- // Clear the promises for the next iteration
189
- for (const member of this.members) {
190
- await this.graph?.updateState(config ?? {}, {
191
- [`${member.name}Promise`]: undefined,
192
- });
193
- }
194
-
195
- const result = await this.supervisorChain?.invoke(state, config);
196
- return result;
197
- };
198
-
199
- workflow.addNode('supervisor', supervisorNode);
200
-
201
- workflow.addConditionalEdges(
202
- 'supervisor',
203
- (x: CollabAgentStateChannels) => x.next,
204
- );
205
-
206
- workflow.addEdge(START, 'supervisor');
207
-
208
- const memory = new MemorySaver();
209
- this.graph = workflow.compile({ checkpointer: memory });
210
- return this.graph;
211
- }
212
-
213
- private async createSupervisorChain(systemPrompt: string, options: string[]): Promise<Runnable> {
214
- const functionDef = {
215
- name: 'route',
216
- description: 'Select the next role.',
217
- parameters: {
218
- title: 'routeSchema',
219
- type: 'object',
220
- properties: {
221
- next: {
222
- title: 'Next',
223
- anyOf: [
224
- { enum: options },
225
- ],
226
- },
227
- },
228
- required: ['next'],
229
- },
230
- };
231
-
232
- const toolDef = {
233
- type: 'function',
234
- function: functionDef,
235
- } as const;
236
-
237
- const prompt = ChatPromptTemplate.fromMessages([
238
- ['system', systemPrompt],
239
- new MessagesPlaceholder('messages'),
240
- [
241
- 'system',
242
- 'Given the conversation above, who should act next?' +
243
- ' Or should we FINISH? Select one of: {options}',
244
- ],
245
- ]);
246
-
247
- const formattedPrompt = await prompt.partial({
248
- options: options.join(', '),
249
- members: this.members.map(m => m.name).join(', '),
250
- });
251
-
252
- const { provider, ...clientOptions } = this.supervisorConfig.llmConfig;
253
- const LLMClass = getChatModelClass(provider);
254
- if (!LLMClass) {
255
- throw new Error(`Unsupported LLM provider for supervisor: ${provider}`);
256
- }
257
- const llm = new LLMClass(clientOptions);
258
-
259
- return formattedPrompt
260
- .pipe(llm.bindTools(
261
- [toolDef],
262
- {
263
- tool_choice: { type: 'function', function: { name: 'route' } } as any,
264
- },
265
- ))
266
- .pipe(new JsonOutputToolsParser())
267
- .pipe((x: any) => (x[0].args));
268
- }
269
- }
@@ -1,243 +0,0 @@
1
- // src/graphs/TaskManager.ts
2
- import { JsonOutputToolsParser } from 'langchain/output_parsers';
3
- import { AgentExecutor, createOpenAIToolsAgent } from 'langchain/agents';
4
- import { BaseMessage, HumanMessage, AIMessage } from '@langchain/core/messages';
5
- import { ChatPromptTemplate, MessagesPlaceholder } from '@langchain/core/prompts';
6
- import { END, START, StateGraph, MemorySaver } from '@langchain/langgraph';
7
- import type { Runnable, RunnableConfig } from '@langchain/core/runnables';
8
- import type { ToolNode } from '@langchain/langgraph/prebuilt';
9
- import type { StructuredTool } from '@langchain/core/tools';
10
- import type { StateGraphArgs } from '@langchain/langgraph';
11
- import type * as t from '@/types';
12
- import {
13
- taskManagerPrompt,
14
- endProcessFunctionParameters,
15
- endProcessFunctionDescription,
16
- assignTasksFunctionParameters,
17
- assignTasksFunctionDescription,
18
- } from '@/prompts/taskmanager';
19
- import { getChatModelClass } from '@/llm/providers';
20
- import { Providers } from '@/common';
21
- import { Graph } from '../graphs/Graph';
22
-
23
- export interface TaskManagerStateChannels {
24
- messages: BaseMessage[];
25
- tasks: Task[];
26
- completedTasks: string[];
27
- next: string;
28
- }
29
-
30
- export interface Task {
31
- member: string;
32
- description: string;
33
- tool?: string;
34
- }
35
-
36
- export interface TaskMember {
37
- name: string;
38
- systemPrompt: string;
39
- tools: StructuredTool[];
40
- llmConfig: t.LLMConfig;
41
- }
42
-
43
- interface SupervisorConfig {
44
- systemPrompt?: string;
45
- llmConfig: t.LLMConfig;
46
- }
47
-
48
- export class TaskManager extends Graph<TaskManagerStateChannels, string> {
49
- initializeTools(tools: StructuredTool[]): ToolNode<TaskManagerStateChannels> {
50
- throw new Error('Method not implemented.');
51
- }
52
- initializeModel(provider: Providers, clientOptions: Record<string, unknown>, tools: StructuredTool[]) {
53
- throw new Error('Method not implemented.');
54
- }
55
- createCallModel(boundModel: any): (state: TaskManagerStateChannels, config?: RunnableConfig) => Promise<Partial<TaskManagerStateChannels>> {
56
- throw new Error('Method not implemented.');
57
- }
58
- private graph: t.CompiledWorkflow<TaskManagerStateChannels, Partial<TaskManagerStateChannels>, string> | null = null;
59
- private members: TaskMember[];
60
- private supervisorConfig: SupervisorConfig;
61
- private supervisorChain: Runnable | null = null;
62
-
63
- constructor(members: TaskMember[], supervisorConfig: SupervisorConfig) {
64
- super();
65
- this.members = members;
66
- this.supervisorConfig = supervisorConfig;
67
- }
68
-
69
- async initialize(): Promise<void> {
70
- const memberNames = this.members.map(member => member.name);
71
- const systemPrompt = this.supervisorConfig.systemPrompt || taskManagerPrompt;
72
- this.supervisorChain = await this.createSupervisorChain(systemPrompt, memberNames);
73
- }
74
-
75
- createGraphState(): StateGraphArgs<TaskManagerStateChannels>['channels'] {
76
- return {
77
- messages: {
78
- value: (x?: BaseMessage[], y?: BaseMessage[]) => (x ?? []).concat(y ?? []),
79
- default: () => [],
80
- },
81
- tasks: {
82
- value: (x?: Task[], y?: Task[]) => y ?? x ?? [],
83
- default: () => [],
84
- },
85
- completedTasks: {
86
- value: (x?: string[], y?: string[]) => [...new Set([...(x ?? []), ...(y ?? [])])],
87
- default: () => [],
88
- },
89
- next: {
90
- value: (x?: string, y?: string) => y ?? x ?? END,
91
- default: () => END,
92
- },
93
- };
94
- }
95
-
96
- private async createAgent(
97
- llmConfig: t.LLMConfig,
98
- tools: StructuredTool[],
99
- systemPrompt: string
100
- ): Promise<AgentExecutor> {
101
- const { provider, ...clientOptions } = llmConfig;
102
- const LLMClass = getChatModelClass(provider);
103
- if (!LLMClass) {
104
- throw new Error(`Unsupported LLM provider: ${provider}`);
105
- }
106
- const llm = new LLMClass(clientOptions);
107
-
108
- const prompt = ChatPromptTemplate.fromMessages([
109
- ['system', systemPrompt],
110
- new MessagesPlaceholder('chat_history'),
111
- ['human', '{input}'],
112
- new MessagesPlaceholder('agent_scratchpad'),
113
- ]);
114
- const agent = await createOpenAIToolsAgent({ llm, tools, prompt });
115
- return new AgentExecutor({ agent, tools });
116
- }
117
-
118
- createWorkflow(
119
- graphState: StateGraphArgs<TaskManagerStateChannels>['channels'],
120
- callModel?: any,
121
- ): t.CompiledWorkflow<TaskManagerStateChannels, Partial<TaskManagerStateChannels>, string> {
122
- if (!this.supervisorChain) {
123
- throw new Error('TaskManager not initialized. Call initialize() first.');
124
- }
125
-
126
- const workflow = new StateGraph<TaskManagerStateChannels, Partial<TaskManagerStateChannels>, string>({
127
- channels: graphState,
128
- });
129
-
130
- const supervisorNode = async (
131
- state: TaskManagerStateChannels,
132
- config?: RunnableConfig,
133
- ) => {
134
- const result = await this.supervisorChain?.invoke(state, config) as { tasks?: Task[], reason?: string };
135
- console.log('Supervisor Node Output:', result);
136
-
137
- if (result && result.reason) {
138
- console.log('Process ending. Reason:', result.reason);
139
- return { next: END };
140
- }
141
-
142
- const newTasks = (result.tasks || []).filter(task =>
143
- !state.completedTasks.includes(`${task.member}:${task.description}`)
144
- );
145
-
146
- return {
147
- tasks: newTasks,
148
- next: newTasks.length > 0 ? 'execute_tasks' : END,
149
- };
150
- };
151
-
152
- const executeTasksNode = async (
153
- state: TaskManagerStateChannels,
154
- config?: RunnableConfig,
155
- ) => {
156
- const results: BaseMessage[] = [];
157
- const completedTasks: string[] = [];
158
-
159
- for (const task of state.tasks) {
160
- const member = this.members.find(m => m.name === task.member);
161
- if (!member) {
162
- throw new Error(`TaskMember ${task.member} not found`);
163
- }
164
-
165
- const agent = await this.createAgent(member.llmConfig, member.tools, member.systemPrompt);
166
- const taskMessage = new HumanMessage(`Task: ${task.description}${task.tool ? ` Use the ${task.tool} tool.` : ''}`);
167
- const result = await agent.invoke({
168
- input: taskMessage.content,
169
- chat_history: state.messages,
170
- }, config);
171
-
172
- results.push(new AIMessage({ content: result.output, name: task.member }));
173
- completedTasks.push(`${task.member}:${task.description}`);
174
- }
175
-
176
- return {
177
- messages: state.messages.concat(results),
178
- completedTasks: state.completedTasks.concat(completedTasks),
179
- tasks: [],
180
- next: 'supervisor',
181
- };
182
- };
183
-
184
- workflow.addNode('supervisor', supervisorNode);
185
- workflow.addNode('execute_tasks', executeTasksNode);
186
-
187
- workflow.addEdge(START, 'supervisor');
188
- workflow.addConditionalEdges(
189
- 'supervisor',
190
- (x: TaskManagerStateChannels) => x.next,
191
- );
192
- workflow.addEdge('execute_tasks', 'supervisor');
193
-
194
- const memory = new MemorySaver();
195
- this.graph = workflow.compile({ checkpointer: memory });
196
- return this.graph;
197
- }
198
-
199
- private async createSupervisorChain(systemPrompt: string, memberNames: string[]): Promise<Runnable> {
200
- const assignTasksDef = {
201
- name: 'assign_tasks',
202
- description: assignTasksFunctionDescription,
203
- parameters: assignTasksFunctionParameters,
204
- };
205
-
206
- const endProcessDef = {
207
- name: 'end_process',
208
- description: endProcessFunctionDescription,
209
- parameters: endProcessFunctionParameters,
210
- };
211
-
212
- const toolDefs = [
213
- { type: 'function', function: assignTasksDef },
214
- { type: 'function', function: endProcessDef },
215
- ];
216
-
217
- const prompt = ChatPromptTemplate.fromMessages([
218
- ['system', systemPrompt],
219
- new MessagesPlaceholder('messages'),
220
- new MessagesPlaceholder('completedTasks'),
221
- [
222
- 'human',
223
- 'Based on the conversation above and the completed tasks, either assign new tasks using the \'assign_tasks\' function or end the process using the \'end_process\' function if the user\'s request is fulfilled. Assign only the most essential tasks to minimize the number of turns. Do not repeat tasks that have already been completed.',
224
- ],
225
- ]);
226
-
227
- const formattedPrompt = await prompt.partial({
228
- members: memberNames.join(', '),
229
- });
230
-
231
- const { provider, ...clientOptions } = this.supervisorConfig.llmConfig;
232
- const LLMClass = getChatModelClass(provider);
233
- if (!LLMClass) {
234
- throw new Error(`Unsupported LLM provider for supervisor: ${provider}`);
235
- }
236
- const llm = new LLMClass(clientOptions);
237
-
238
- return formattedPrompt
239
- .pipe(llm.bindTools(toolDefs))
240
- .pipe(new JsonOutputToolsParser())
241
- .pipe((x: any) => x[0].args);
242
- }
243
- }