@lobehub/lobehub 2.0.0-next.190 → 2.0.0-next.191

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 (87) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/changelog/v1.json +9 -0
  3. package/package.json +1 -1
  4. package/packages/const/src/utils/merge.test.ts +679 -0
  5. package/packages/context-engine/src/processors/__tests__/AgentCouncilFlatten.test.ts +0 -20
  6. package/packages/context-engine/src/processors/__tests__/MessageContent.test.ts +5 -23
  7. package/packages/context-engine/src/providers/SystemRoleInjector.ts +0 -1
  8. package/packages/conversation-flow/src/__tests__/fixtures/inputs/agentCouncil/simple.json +4 -19
  9. package/packages/conversation-flow/src/__tests__/fixtures/inputs/agentCouncil/with-supervisor-reply.json +4 -23
  10. package/packages/conversation-flow/src/__tests__/fixtures/inputs/agentGroup/speak-different-agent.json +3 -13
  11. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistant-chain-with-followup.json +3 -8
  12. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/assistant-with-tools.json +21 -17
  13. package/packages/conversation-flow/src/__tests__/fixtures/inputs/assistantGroup/tools-with-branches.json +15 -15
  14. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/active-index-1.json +3 -13
  15. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-branch.json +2 -9
  16. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-group-branches.json +0 -11
  17. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/assistant-user-branch.json +5 -15
  18. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/conversation.json +4 -14
  19. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/multi-assistant-group.json +0 -13
  20. package/packages/conversation-flow/src/__tests__/fixtures/inputs/branch/nested.json +2 -15
  21. package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/simple.json +4 -9
  22. package/packages/conversation-flow/src/__tests__/fixtures/inputs/compare/with-tools.json +8 -17
  23. package/packages/conversation-flow/src/__tests__/fixtures/inputs/linear-conversation.json +3 -7
  24. package/packages/conversation-flow/src/__tests__/fixtures/inputs/tasks/simple.json +1 -7
  25. package/packages/conversation-flow/src/__tests__/fixtures/inputs/tasks/with-summary.json +10 -11
  26. package/packages/conversation-flow/src/__tests__/fixtures/outputs/agentCouncil/simple.json +2 -32
  27. package/packages/conversation-flow/src/__tests__/fixtures/outputs/agentCouncil/with-supervisor-reply.json +8 -46
  28. package/packages/conversation-flow/src/__tests__/fixtures/outputs/agentGroup/speak-different-agent.json +5 -24
  29. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistant-chain-with-followup.json +5 -13
  30. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/assistant-with-tools.json +6 -16
  31. package/packages/conversation-flow/src/__tests__/fixtures/outputs/assistantGroup/tools-with-branches.json +6 -17
  32. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/active-index-1.json +4 -18
  33. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-branch.json +4 -16
  34. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-group-branches.json +0 -19
  35. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/assistant-user-branch.json +8 -24
  36. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/conversation.json +7 -23
  37. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/multi-assistant-group.json +0 -15
  38. package/packages/conversation-flow/src/__tests__/fixtures/outputs/branch/nested.json +4 -25
  39. package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/simple.json +2 -13
  40. package/packages/conversation-flow/src/__tests__/fixtures/outputs/compare/with-tools.json +4 -20
  41. package/packages/conversation-flow/src/__tests__/fixtures/outputs/linear-conversation.json +4 -12
  42. package/packages/conversation-flow/src/__tests__/fixtures/outputs/tasks/simple.json +2 -14
  43. package/packages/conversation-flow/src/__tests__/fixtures/outputs/tasks/with-summary.json +20 -22
  44. package/packages/conversation-flow/src/__tests__/indexing.test.ts +0 -35
  45. package/packages/conversation-flow/src/__tests__/structuring.test.ts +0 -41
  46. package/packages/conversation-flow/src/transformation/FlatListBuilder.ts +0 -4
  47. package/packages/conversation-flow/src/transformation/__tests__/BranchResolver.test.ts +0 -10
  48. package/packages/conversation-flow/src/transformation/__tests__/ContextTreeBuilder.test.ts +0 -19
  49. package/packages/conversation-flow/src/transformation/__tests__/FlatListBuilder.test.ts +0 -37
  50. package/packages/conversation-flow/src/transformation/__tests__/MessageCollector.test.ts +0 -12
  51. package/packages/conversation-flow/src/transformation/__tests__/MessageTransformer.test.ts +0 -2
  52. package/packages/database/src/models/message.ts +0 -1
  53. package/packages/prompts/src/prompts/chatMessages/index.test.ts +0 -1
  54. package/packages/prompts/src/prompts/groupChat/__snapshots__/index.test.ts.snap +0 -21
  55. package/packages/prompts/src/prompts/groupChat/index.test.ts +0 -3
  56. package/packages/types/src/message/ui/chat.ts +0 -2
  57. package/src/features/Conversation/store/slices/data/action.test.ts +0 -14
  58. package/src/features/Conversation/store/slices/data/reducer.test.ts +0 -21
  59. package/src/features/Conversation/store/slices/data/reducer.ts +1 -1
  60. package/src/features/Conversation/store/slices/message/action/crud.test.ts +0 -10
  61. package/src/server/modules/Mecha/ContextEngineering/__tests__/serverMessagesEngine.test.ts +3 -5
  62. package/src/server/routers/lambda/__tests__/message.test.ts +1 -2
  63. package/src/server/services/agentRuntime/AgentRuntimeService.ts +109 -109
  64. package/src/server/services/agentRuntime/types.ts +8 -8
  65. package/src/server/services/doc/index.tsx +2 -2
  66. package/src/server/services/generation/index.ts +2 -2
  67. package/src/server/services/message/index.ts +3 -3
  68. package/src/server/services/usage/index.ts +4 -4
  69. package/src/services/chat/chat.test.ts +0 -6
  70. package/src/services/chat/mecha/contextEngineering.test.ts +3 -29
  71. package/src/services/chat/mecha/modelParamsResolver.test.ts +803 -0
  72. package/src/store/chat/agents/GroupOrchestration/createGroupOrchestrationExecutors.ts +0 -2
  73. package/src/store/chat/agents/__tests__/createAgentExecutors/call-tool.test.ts +0 -6
  74. package/src/store/chat/agents/__tests__/createAgentExecutors/fixtures/mockMessages.ts +0 -3
  75. package/src/store/chat/agents/createAgentExecutors.ts +4 -4
  76. package/src/store/chat/slices/aiAgent/actions/__tests__/agentGroup.test.ts +0 -2
  77. package/src/store/chat/slices/aiAgent/actions/__tests__/runAgent.test.ts +0 -3
  78. package/src/store/chat/slices/aiChat/actions/conversationLifecycle.ts +0 -1
  79. package/src/store/chat/slices/builtinTool/actions/__tests__/search.test.ts +0 -4
  80. package/src/store/chat/slices/message/reducer.test.ts +0 -5
  81. package/src/store/chat/slices/message/reducer.ts +1 -1
  82. package/src/store/chat/slices/message/selectors/displayMessage.test.ts +0 -13
  83. package/src/store/chat/slices/message/selectors/displayMessage.ts +3 -34
  84. package/src/store/chat/slices/portal/selectors.test.ts +0 -7
  85. package/src/store/chat/slices/thread/action.test.ts +0 -1
  86. package/src/store/chat/slices/translate/action.test.ts +0 -1
  87. package/src/store/tool/slices/oldStore/action.test.ts +0 -1
@@ -58,7 +58,6 @@
58
58
  "parentId": null,
59
59
  "createdAt": 1704067200000,
60
60
  "updatedAt": 1704067200000,
61
- "meta": {},
62
61
  "metadata": {
63
62
  "compare": true
64
63
  }
@@ -76,7 +75,6 @@
76
75
  "provider": "openai",
77
76
  "createdAt": 1704067205000,
78
77
  "updatedAt": 1704067205000,
79
- "meta": {},
80
78
  "metadata": {
81
79
  "totalInputTokens": 24,
82
80
  "totalOutputTokens": 198,
@@ -99,7 +97,6 @@
99
97
  "provider": "anthropic",
100
98
  "createdAt": 1704067205100,
101
99
  "updatedAt": 1704067205100,
102
- "meta": {},
103
100
  "metadata": {
104
101
  "totalInputTokens": 24,
105
102
  "totalOutputTokens": 215,
@@ -123,7 +120,6 @@
123
120
  "provider": "openai",
124
121
  "createdAt": 1704067205200,
125
122
  "updatedAt": 1704067205200,
126
- "meta": {},
127
123
  "children": [
128
124
  {
129
125
  "content": "Let me run a benchmark test to compare these two sorting algorithms with real data.",
@@ -213,7 +209,6 @@
213
209
  "parentMessageId": "msg-301"
214
210
  },
215
211
  "id": "compare-msg-301-msg-302-msg-303-msg-304",
216
- "meta": {},
217
212
  "role": "compare",
218
213
  "updatedAt": 1704067205200
219
214
  },
@@ -223,8 +218,7 @@
223
218
  "content": "Great analysis! Can you explain why QuickSort has better cache locality?",
224
219
  "parentId": "msg-303",
225
220
  "createdAt": 1704067220000,
226
- "updatedAt": 1704067220000,
227
- "meta": {}
221
+ "updatedAt": 1704067220000
228
222
  },
229
223
  {
230
224
  "id": "msg-309",
@@ -233,7 +227,6 @@
233
227
  "parentId": "msg-308",
234
228
  "createdAt": 1704067222000,
235
229
  "updatedAt": 1704067222000,
236
- "meta": {},
237
230
  "metadata": {
238
231
  "totalInputTokens": 268,
239
232
  "totalOutputTokens": 176,
@@ -254,7 +247,6 @@
254
247
  "parentId": null,
255
248
  "createdAt": 1704067200000,
256
249
  "updatedAt": 1704067200000,
257
- "meta": {},
258
250
  "metadata": {
259
251
  "compare": true
260
252
  }
@@ -268,7 +260,6 @@
268
260
  "provider": "openai",
269
261
  "createdAt": 1704067205000,
270
262
  "updatedAt": 1704067205000,
271
- "meta": {},
272
263
  "metadata": {
273
264
  "totalInputTokens": 24,
274
265
  "totalOutputTokens": 198,
@@ -289,7 +280,6 @@
289
280
  "provider": "anthropic",
290
281
  "createdAt": 1704067205100,
291
282
  "updatedAt": 1704067205100,
292
- "meta": {},
293
283
  "metadata": {
294
284
  "totalInputTokens": 24,
295
285
  "totalOutputTokens": 215,
@@ -327,7 +317,6 @@
327
317
  ],
328
318
  "createdAt": 1704067205200,
329
319
  "updatedAt": 1704067205200,
330
- "meta": {},
331
320
  "metadata": {
332
321
  "totalInputTokens": 24,
333
322
  "totalOutputTokens": 38,
@@ -350,8 +339,7 @@
350
339
  },
351
340
  "parentId": "msg-304",
352
341
  "createdAt": 1704067207540,
353
- "updatedAt": 1704067207540,
354
- "meta": {}
342
+ "updatedAt": 1704067207540
355
343
  },
356
344
  "msg-306": {
357
345
  "id": "msg-306",
@@ -364,8 +352,7 @@
364
352
  },
365
353
  "parentId": "msg-304",
366
354
  "createdAt": 1704067207552,
367
- "updatedAt": 1704067207552,
368
- "meta": {}
355
+ "updatedAt": 1704067207552
369
356
  },
370
357
  "msg-307": {
371
358
  "id": "msg-307",
@@ -374,7 +361,6 @@
374
361
  "parentId": "msg-306",
375
362
  "createdAt": 1704067208000,
376
363
  "updatedAt": 1704067208000,
377
- "meta": {},
378
364
  "metadata": {
379
365
  "totalInputTokens": 156,
380
366
  "totalOutputTokens": 134,
@@ -392,8 +378,7 @@
392
378
  "content": "Great analysis! Can you explain why QuickSort has better cache locality?",
393
379
  "parentId": "msg-303",
394
380
  "createdAt": 1704067220000,
395
- "updatedAt": 1704067220000,
396
- "meta": {}
381
+ "updatedAt": 1704067220000
397
382
  },
398
383
  "msg-309": {
399
384
  "id": "msg-309",
@@ -402,7 +387,6 @@
402
387
  "parentId": "msg-308",
403
388
  "createdAt": 1704067222000,
404
389
  "updatedAt": 1704067222000,
405
- "meta": {},
406
390
  "metadata": {
407
391
  "totalInputTokens": 268,
408
392
  "totalOutputTokens": 176,
@@ -24,8 +24,7 @@
24
24
  "content": "Can you help me write a Python function to check if a number is prime?",
25
25
  "parentId": null,
26
26
  "createdAt": 1704067200000,
27
- "updatedAt": 1704067200000,
28
- "meta": {}
27
+ "updatedAt": 1704067200000
29
28
  },
30
29
  {
31
30
  "id": "msg-002",
@@ -34,7 +33,6 @@
34
33
  "parentId": "msg-001",
35
34
  "createdAt": 1704067205000,
36
35
  "updatedAt": 1704067205000,
37
- "meta": {},
38
36
  "usage": {
39
37
  "totalInputTokens": 24,
40
38
  "totalOutputTokens": 156,
@@ -54,8 +52,7 @@
54
52
  "content": "Thanks! Can you add some test cases?",
55
53
  "parentId": "msg-002",
56
54
  "createdAt": 1704067210000,
57
- "updatedAt": 1704067210000,
58
- "meta": {}
55
+ "updatedAt": 1704067210000
59
56
  },
60
57
  {
61
58
  "id": "msg-004",
@@ -64,7 +61,6 @@
64
61
  "parentId": "msg-003",
65
62
  "createdAt": 1704067213000,
66
63
  "updatedAt": 1704067213000,
67
- "meta": {},
68
64
  "usage": {
69
65
  "totalInputTokens": 180,
70
66
  "totalOutputTokens": 89,
@@ -83,8 +79,7 @@
83
79
  "content": "Can you help me write a Python function to check if a number is prime?",
84
80
  "parentId": null,
85
81
  "createdAt": 1704067200000,
86
- "updatedAt": 1704067200000,
87
- "meta": {}
82
+ "updatedAt": 1704067200000
88
83
  },
89
84
  "msg-002": {
90
85
  "id": "msg-002",
@@ -93,7 +88,6 @@
93
88
  "parentId": "msg-001",
94
89
  "createdAt": 1704067205000,
95
90
  "updatedAt": 1704067205000,
96
- "meta": {},
97
91
  "usage": {
98
92
  "totalInputTokens": 24,
99
93
  "totalOutputTokens": 156,
@@ -113,8 +107,7 @@
113
107
  "content": "Thanks! Can you add some test cases?",
114
108
  "parentId": "msg-002",
115
109
  "createdAt": 1704067210000,
116
- "updatedAt": 1704067210000,
117
- "meta": {}
110
+ "updatedAt": 1704067210000
118
111
  },
119
112
  "msg-004": {
120
113
  "id": "msg-004",
@@ -123,7 +116,6 @@
123
116
  "parentId": "msg-003",
124
117
  "createdAt": 1704067213000,
125
118
  "updatedAt": 1704067213000,
126
- "meta": {},
127
119
  "usage": {
128
120
  "totalInputTokens": 180,
129
121
  "totalOutputTokens": 89,
@@ -42,8 +42,7 @@
42
42
  "content": "Help me create two tasks to research the weather in Hangzhou and Beijing tomorrow.",
43
43
  "parentId": null,
44
44
  "createdAt": 1735526559382,
45
- "updatedAt": 1735526559382,
46
- "meta": {}
45
+ "updatedAt": 1735526559382
47
46
  },
48
47
  {
49
48
  "id": "msg-assistant-1",
@@ -52,7 +51,6 @@
52
51
  "parentId": "msg-user-1",
53
52
  "createdAt": 1735526560163,
54
53
  "updatedAt": 1735526585550,
55
- "meta": {},
56
54
  "model": "deepseek-chat",
57
55
  "provider": "deepseek",
58
56
  "children": [
@@ -121,7 +119,6 @@
121
119
  "parentMessageId": "msg-tool-1"
122
120
  },
123
121
  "id": "tasks-msg-tool-1-msg-task-hangzhou-msg-task-beijing",
124
- "meta": {},
125
122
  "role": "tasks",
126
123
  "tasks": [
127
124
  {
@@ -131,7 +128,6 @@
131
128
  "parentId": "msg-tool-1",
132
129
  "createdAt": 1735526594643,
133
130
  "updatedAt": 1735526756262,
134
- "meta": {},
135
131
  "metadata": {
136
132
  "instruction": "Search for Hangzhou weather tomorrow."
137
133
  },
@@ -153,7 +149,6 @@
153
149
  "parentId": "msg-tool-1",
154
150
  "createdAt": 1735526595647,
155
151
  "updatedAt": 1735526792430,
156
- "meta": {},
157
152
  "metadata": {
158
153
  "instruction": "Search for Beijing weather tomorrow."
159
154
  },
@@ -178,7 +173,6 @@
178
173
  "parentId": "msg-tool-1",
179
174
  "createdAt": 1735526795651,
180
175
  "updatedAt": 1735526813171,
181
- "meta": {},
182
176
  "model": "deepseek-chat",
183
177
  "provider": "deepseek",
184
178
  "metadata": {
@@ -200,8 +194,7 @@
200
194
  "content": "Help me create two tasks to research the weather in Hangzhou and Beijing tomorrow.",
201
195
  "parentId": null,
202
196
  "createdAt": 1735526559382,
203
- "updatedAt": 1735526559382,
204
- "meta": {}
197
+ "updatedAt": 1735526559382
205
198
  },
206
199
  "msg-assistant-1": {
207
200
  "id": "msg-assistant-1",
@@ -210,7 +203,6 @@
210
203
  "parentId": "msg-user-1",
211
204
  "createdAt": 1735526560163,
212
205
  "updatedAt": 1735526585550,
213
- "meta": {},
214
206
  "model": "deepseek-chat",
215
207
  "provider": "deepseek",
216
208
  "tools": [
@@ -241,7 +233,6 @@
241
233
  "tool_call_id": "call_exec_tasks_1",
242
234
  "createdAt": 1735526588116,
243
235
  "updatedAt": 1735526591337,
244
- "meta": {},
245
236
  "plugin": {
246
237
  "apiName": "execTasks",
247
238
  "arguments": "{\"tasks\": [{\"description\": \"Research Hangzhou weather\", \"instruction\": \"Search for Hangzhou weather tomorrow.\"}, {\"description\": \"Research Beijing weather\", \"instruction\": \"Search for Beijing weather tomorrow.\"}]}",
@@ -270,7 +261,6 @@
270
261
  "parentId": "msg-tool-1",
271
262
  "createdAt": 1735526594643,
272
263
  "updatedAt": 1735526756262,
273
- "meta": {},
274
264
  "metadata": {
275
265
  "instruction": "Search for Hangzhou weather tomorrow."
276
266
  },
@@ -292,7 +282,6 @@
292
282
  "parentId": "msg-tool-1",
293
283
  "createdAt": 1735526595647,
294
284
  "updatedAt": 1735526792430,
295
- "meta": {},
296
285
  "metadata": {
297
286
  "instruction": "Search for Beijing weather tomorrow."
298
287
  },
@@ -314,7 +303,6 @@
314
303
  "parentId": "msg-tool-1",
315
304
  "createdAt": 1735526795651,
316
305
  "updatedAt": 1735526813171,
317
- "meta": {},
318
306
  "model": "deepseek-chat",
319
307
  "provider": "deepseek",
320
308
  "metadata": {
@@ -46,8 +46,7 @@
46
46
  "content": "Create three parallel tasks to research AI topics.",
47
47
  "parentId": null,
48
48
  "createdAt": 1735526559382,
49
- "updatedAt": 1735526559382,
50
- "meta": {}
49
+ "updatedAt": 1735526559382
51
50
  },
52
51
  {
53
52
  "id": "msg-assistant-1",
@@ -56,7 +55,6 @@
56
55
  "parentId": "msg-user-1",
57
56
  "createdAt": 1735526560163,
58
57
  "updatedAt": 1735526585550,
59
- "meta": {},
60
58
  "model": "gpt-4",
61
59
  "provider": "openai",
62
60
  "children": [
@@ -76,9 +74,15 @@
76
74
  "state": {
77
75
  "type": "execTasks",
78
76
  "tasks": [
79
- { "description": "Research LLM architectures" },
80
- { "description": "Research AI agents" },
81
- { "description": "Research RAG systems" }
77
+ {
78
+ "description": "Research LLM architectures"
79
+ },
80
+ {
81
+ "description": "Research AI agents"
82
+ },
83
+ {
84
+ "description": "Research RAG systems"
85
+ }
82
86
  ],
83
87
  "parentMessageId": "msg-tool-1"
84
88
  }
@@ -95,7 +99,6 @@
95
99
  "content": "",
96
100
  "createdAt": 1735526594643,
97
101
  "updatedAt": 1735526800000,
98
- "meta": {},
99
102
  "extra": {
100
103
  "parentMessageId": "msg-tool-1"
101
104
  },
@@ -107,7 +110,6 @@
107
110
  "parentId": "msg-tool-1",
108
111
  "createdAt": 1735526594643,
109
112
  "updatedAt": 1735526756262,
110
- "meta": {},
111
113
  "taskDetail": {
112
114
  "duration": 120000,
113
115
  "status": "completed",
@@ -125,7 +127,6 @@
125
127
  "parentId": "msg-tool-1",
126
128
  "createdAt": 1735526595647,
127
129
  "updatedAt": 1735526792430,
128
- "meta": {},
129
130
  "taskDetail": {
130
131
  "duration": 150000,
131
132
  "status": "completed",
@@ -143,7 +144,6 @@
143
144
  "parentId": "msg-tool-1",
144
145
  "createdAt": 1735526596000,
145
146
  "updatedAt": 1735526800000,
146
- "meta": {},
147
147
  "taskDetail": {
148
148
  "duration": 130000,
149
149
  "status": "completed",
@@ -163,7 +163,6 @@
163
163
  "parentId": "msg-tool-1",
164
164
  "createdAt": 1735526810000,
165
165
  "updatedAt": 1735526820000,
166
- "meta": {},
167
166
  "model": "gpt-4",
168
167
  "provider": "openai"
169
168
  }
@@ -175,8 +174,7 @@
175
174
  "content": "Create three parallel tasks to research AI topics.",
176
175
  "parentId": null,
177
176
  "createdAt": 1735526559382,
178
- "updatedAt": 1735526559382,
179
- "meta": {}
177
+ "updatedAt": 1735526559382
180
178
  },
181
179
  "msg-assistant-1": {
182
180
  "id": "msg-assistant-1",
@@ -185,7 +183,6 @@
185
183
  "parentId": "msg-user-1",
186
184
  "createdAt": 1735526560163,
187
185
  "updatedAt": 1735526585550,
188
- "meta": {},
189
186
  "model": "gpt-4",
190
187
  "provider": "openai",
191
188
  "tools": [
@@ -206,13 +203,18 @@
206
203
  "tool_call_id": "call_exec_tasks_1",
207
204
  "createdAt": 1735526588116,
208
205
  "updatedAt": 1735526591337,
209
- "meta": {},
210
206
  "pluginState": {
211
207
  "type": "execTasks",
212
208
  "tasks": [
213
- { "description": "Research LLM architectures" },
214
- { "description": "Research AI agents" },
215
- { "description": "Research RAG systems" }
209
+ {
210
+ "description": "Research LLM architectures"
211
+ },
212
+ {
213
+ "description": "Research AI agents"
214
+ },
215
+ {
216
+ "description": "Research RAG systems"
217
+ }
216
218
  ],
217
219
  "parentMessageId": "msg-tool-1"
218
220
  }
@@ -224,7 +226,6 @@
224
226
  "parentId": "msg-tool-1",
225
227
  "createdAt": 1735526594643,
226
228
  "updatedAt": 1735526756262,
227
- "meta": {},
228
229
  "taskDetail": {
229
230
  "duration": 120000,
230
231
  "status": "completed",
@@ -242,7 +243,6 @@
242
243
  "parentId": "msg-tool-1",
243
244
  "createdAt": 1735526595647,
244
245
  "updatedAt": 1735526792430,
245
- "meta": {},
246
246
  "taskDetail": {
247
247
  "duration": 150000,
248
248
  "status": "completed",
@@ -260,7 +260,6 @@
260
260
  "parentId": "msg-tool-1",
261
261
  "createdAt": 1735526596000,
262
262
  "updatedAt": 1735526800000,
263
- "meta": {},
264
263
  "taskDetail": {
265
264
  "duration": 130000,
266
265
  "status": "completed",
@@ -278,7 +277,6 @@
278
277
  "parentId": "msg-tool-1",
279
278
  "createdAt": 1735526810000,
280
279
  "updatedAt": 1735526820000,
281
- "meta": {},
282
280
  "model": "gpt-4",
283
281
  "provider": "openai"
284
282
  }