illuma-agents 1.0.7 → 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.
- package/LICENSE +1 -5
- package/dist/cjs/common/enum.cjs +1 -2
- package/dist/cjs/common/enum.cjs.map +1 -1
- package/dist/cjs/instrumentation.cjs.map +1 -1
- package/dist/cjs/llm/anthropic/types.cjs.map +1 -1
- package/dist/cjs/llm/anthropic/utils/message_inputs.cjs +79 -2
- package/dist/cjs/llm/anthropic/utils/message_inputs.cjs.map +1 -1
- package/dist/cjs/llm/anthropic/utils/tools.cjs.map +1 -1
- package/dist/cjs/llm/bedrock/index.cjs +99 -0
- package/dist/cjs/llm/bedrock/index.cjs.map +1 -0
- package/dist/cjs/llm/fake.cjs.map +1 -1
- package/dist/cjs/llm/google/index.cjs +78 -9
- package/dist/cjs/llm/google/index.cjs.map +1 -1
- package/dist/cjs/llm/google/utils/common.cjs +185 -28
- package/dist/cjs/llm/google/utils/common.cjs.map +1 -1
- package/dist/cjs/llm/providers.cjs +13 -16
- package/dist/cjs/llm/providers.cjs.map +1 -1
- package/dist/cjs/llm/text.cjs.map +1 -1
- package/dist/cjs/messages/core.cjs +14 -14
- package/dist/cjs/messages/core.cjs.map +1 -1
- package/dist/cjs/messages/ids.cjs.map +1 -1
- package/dist/cjs/messages/prune.cjs.map +1 -1
- package/dist/cjs/run.cjs +10 -1
- package/dist/cjs/run.cjs.map +1 -1
- package/dist/cjs/splitStream.cjs.map +1 -1
- package/dist/cjs/stream.cjs +4 -1
- package/dist/cjs/stream.cjs.map +1 -1
- package/dist/cjs/tools/ToolNode.cjs +163 -55
- package/dist/cjs/tools/ToolNode.cjs.map +1 -1
- package/dist/cjs/tools/handlers.cjs +29 -25
- package/dist/cjs/tools/handlers.cjs.map +1 -1
- package/dist/cjs/tools/search/anthropic.cjs.map +1 -1
- package/dist/cjs/tools/search/content.cjs.map +1 -1
- package/dist/cjs/tools/search/firecrawl.cjs.map +1 -1
- package/dist/cjs/tools/search/format.cjs.map +1 -1
- package/dist/cjs/tools/search/highlights.cjs.map +1 -1
- package/dist/cjs/tools/search/rerankers.cjs.map +1 -1
- package/dist/cjs/tools/search/schema.cjs +25 -25
- package/dist/cjs/tools/search/schema.cjs.map +1 -1
- package/dist/cjs/tools/search/search.cjs +6 -1
- package/dist/cjs/tools/search/search.cjs.map +1 -1
- package/dist/cjs/tools/search/serper-scraper.cjs.map +1 -1
- package/dist/cjs/tools/search/tool.cjs +162 -35
- package/dist/cjs/tools/search/tool.cjs.map +1 -1
- package/dist/cjs/tools/search/utils.cjs.map +1 -1
- package/dist/cjs/utils/graph.cjs.map +1 -1
- package/dist/cjs/utils/llm.cjs +0 -1
- package/dist/cjs/utils/llm.cjs.map +1 -1
- package/dist/cjs/utils/misc.cjs.map +1 -1
- package/dist/cjs/utils/run.cjs.map +1 -1
- package/dist/cjs/utils/title.cjs +7 -7
- package/dist/cjs/utils/title.cjs.map +1 -1
- package/dist/esm/common/enum.mjs +1 -2
- package/dist/esm/common/enum.mjs.map +1 -1
- package/dist/esm/instrumentation.mjs.map +1 -1
- package/dist/esm/llm/anthropic/types.mjs.map +1 -1
- package/dist/esm/llm/anthropic/utils/message_inputs.mjs +79 -2
- package/dist/esm/llm/anthropic/utils/message_inputs.mjs.map +1 -1
- package/dist/esm/llm/anthropic/utils/tools.mjs.map +1 -1
- package/dist/esm/llm/bedrock/index.mjs +97 -0
- package/dist/esm/llm/bedrock/index.mjs.map +1 -0
- package/dist/esm/llm/fake.mjs.map +1 -1
- package/dist/esm/llm/google/index.mjs +79 -10
- package/dist/esm/llm/google/index.mjs.map +1 -1
- package/dist/esm/llm/google/utils/common.mjs +184 -30
- package/dist/esm/llm/google/utils/common.mjs.map +1 -1
- package/dist/esm/llm/providers.mjs +2 -5
- package/dist/esm/llm/providers.mjs.map +1 -1
- package/dist/esm/llm/text.mjs.map +1 -1
- package/dist/esm/messages/core.mjs +14 -14
- package/dist/esm/messages/core.mjs.map +1 -1
- package/dist/esm/messages/ids.mjs.map +1 -1
- package/dist/esm/messages/prune.mjs.map +1 -1
- package/dist/esm/run.mjs +10 -1
- package/dist/esm/run.mjs.map +1 -1
- package/dist/esm/splitStream.mjs.map +1 -1
- package/dist/esm/stream.mjs +4 -1
- package/dist/esm/stream.mjs.map +1 -1
- package/dist/esm/tools/ToolNode.mjs +164 -56
- package/dist/esm/tools/ToolNode.mjs.map +1 -1
- package/dist/esm/tools/handlers.mjs +30 -26
- package/dist/esm/tools/handlers.mjs.map +1 -1
- package/dist/esm/tools/search/anthropic.mjs.map +1 -1
- package/dist/esm/tools/search/content.mjs.map +1 -1
- package/dist/esm/tools/search/firecrawl.mjs.map +1 -1
- package/dist/esm/tools/search/format.mjs.map +1 -1
- package/dist/esm/tools/search/highlights.mjs.map +1 -1
- package/dist/esm/tools/search/rerankers.mjs.map +1 -1
- package/dist/esm/tools/search/schema.mjs +25 -25
- package/dist/esm/tools/search/schema.mjs.map +1 -1
- package/dist/esm/tools/search/search.mjs +6 -1
- package/dist/esm/tools/search/search.mjs.map +1 -1
- package/dist/esm/tools/search/serper-scraper.mjs.map +1 -1
- package/dist/esm/tools/search/tool.mjs +162 -35
- package/dist/esm/tools/search/tool.mjs.map +1 -1
- package/dist/esm/tools/search/utils.mjs.map +1 -1
- package/dist/esm/utils/graph.mjs.map +1 -1
- package/dist/esm/utils/llm.mjs +0 -1
- package/dist/esm/utils/llm.mjs.map +1 -1
- package/dist/esm/utils/misc.mjs.map +1 -1
- package/dist/esm/utils/run.mjs.map +1 -1
- package/dist/esm/utils/title.mjs +7 -7
- package/dist/esm/utils/title.mjs.map +1 -1
- package/dist/types/common/enum.d.ts +1 -2
- package/dist/types/llm/bedrock/index.d.ts +36 -0
- package/dist/types/llm/google/index.d.ts +10 -0
- package/dist/types/llm/google/types.d.ts +11 -1
- package/dist/types/llm/google/utils/common.d.ts +17 -2
- package/dist/types/tools/ToolNode.d.ts +9 -1
- package/dist/types/tools/search/types.d.ts +2 -0
- package/dist/types/types/llm.d.ts +3 -8
- package/dist/types/types/tools.d.ts +1 -1
- package/package.json +15 -11
- package/src/common/enum.ts +1 -2
- package/src/common/index.ts +1 -1
- package/src/instrumentation.ts +22 -22
- package/src/llm/anthropic/llm.spec.ts +1442 -1442
- package/src/llm/anthropic/types.ts +140 -140
- package/src/llm/anthropic/utils/message_inputs.ts +757 -660
- package/src/llm/anthropic/utils/output_parsers.ts +133 -133
- package/src/llm/anthropic/utils/tools.ts +29 -29
- package/src/llm/bedrock/index.ts +128 -0
- package/src/llm/fake.ts +133 -133
- package/src/llm/google/data/gettysburg10.wav +0 -0
- package/src/llm/google/data/hotdog.jpg +0 -0
- package/src/llm/google/index.ts +129 -14
- package/src/llm/google/llm.spec.ts +932 -0
- package/src/llm/google/types.ts +56 -43
- package/src/llm/google/utils/common.ts +873 -660
- package/src/llm/google/utils/tools.ts +160 -160
- package/src/llm/openai/types.ts +24 -24
- package/src/llm/openai/utils/isReasoningModel.test.ts +90 -90
- package/src/llm/providers.ts +2 -7
- package/src/llm/text.ts +94 -94
- package/src/messages/core.ts +463 -463
- package/src/messages/formatAgentMessages.tools.test.ts +400 -400
- package/src/messages/formatMessage.test.ts +693 -693
- package/src/messages/ids.ts +26 -26
- package/src/messages/prune.ts +567 -567
- package/src/messages/shiftIndexTokenCountMap.test.ts +81 -81
- package/src/mockStream.ts +98 -98
- package/src/prompts/collab.ts +5 -5
- package/src/prompts/index.ts +1 -1
- package/src/prompts/taskmanager.ts +61 -61
- package/src/run.ts +13 -4
- package/src/scripts/ant_web_search_edge_case.ts +162 -0
- package/src/scripts/ant_web_search_error_edge_case.ts +148 -0
- package/src/scripts/args.ts +48 -48
- package/src/scripts/caching.ts +123 -123
- package/src/scripts/code_exec_files.ts +193 -193
- package/src/scripts/empty_input.ts +137 -137
- package/src/scripts/image.ts +178 -178
- package/src/scripts/memory.ts +97 -97
- package/src/scripts/thinking.ts +149 -149
- package/src/specs/anthropic.simple.test.ts +67 -0
- package/src/specs/spec.utils.ts +3 -3
- package/src/specs/token-distribution-edge-case.test.ts +316 -316
- package/src/specs/tool-error.test.ts +193 -193
- package/src/splitStream.test.ts +691 -691
- package/src/splitStream.ts +234 -234
- package/src/stream.test.ts +94 -94
- package/src/stream.ts +4 -1
- package/src/tools/ToolNode.ts +206 -64
- package/src/tools/handlers.ts +32 -28
- package/src/tools/search/anthropic.ts +51 -51
- package/src/tools/search/content.test.ts +173 -173
- package/src/tools/search/content.ts +147 -147
- package/src/tools/search/direct-url.test.ts +530 -0
- package/src/tools/search/firecrawl.ts +210 -210
- package/src/tools/search/format.ts +250 -250
- package/src/tools/search/highlights.ts +320 -320
- package/src/tools/search/index.ts +2 -2
- package/src/tools/search/jina-reranker.test.ts +126 -126
- package/src/tools/search/output.md +2775 -2775
- package/src/tools/search/rerankers.ts +242 -242
- package/src/tools/search/schema.ts +63 -63
- package/src/tools/search/search.ts +766 -759
- package/src/tools/search/serper-scraper.ts +155 -155
- package/src/tools/search/test.html +883 -883
- package/src/tools/search/test.md +642 -642
- package/src/tools/search/test.ts +159 -159
- package/src/tools/search/tool.ts +619 -471
- package/src/tools/search/types.ts +689 -687
- package/src/tools/search/utils.ts +79 -79
- package/src/types/index.ts +6 -6
- package/src/types/llm.ts +2 -8
- package/src/types/tools.ts +80 -80
- package/src/utils/graph.ts +10 -10
- package/src/utils/llm.ts +26 -27
- package/src/utils/llmConfig.ts +5 -3
- package/src/utils/logging.ts +48 -48
- package/src/utils/misc.ts +57 -57
- package/src/utils/run.ts +100 -100
- package/src/utils/title.ts +165 -165
- package/dist/cjs/llm/ollama/index.cjs +0 -70
- package/dist/cjs/llm/ollama/index.cjs.map +0 -1
- package/dist/cjs/llm/ollama/utils.cjs +0 -158
- package/dist/cjs/llm/ollama/utils.cjs.map +0 -1
- package/dist/esm/llm/ollama/index.mjs +0 -68
- package/dist/esm/llm/ollama/index.mjs.map +0 -1
- package/dist/esm/llm/ollama/utils.mjs +0 -155
- package/dist/esm/llm/ollama/utils.mjs.map +0 -1
- package/dist/types/llm/ollama/index.d.ts +0 -8
- package/dist/types/llm/ollama/utils.d.ts +0 -7
- package/src/llm/ollama/index.ts +0 -92
- package/src/llm/ollama/utils.ts +0 -193
- package/src/proto/CollabGraph.ts +0 -269
- package/src/proto/TaskManager.ts +0 -243
- package/src/proto/collab.ts +0 -200
- package/src/proto/collab_design.ts +0 -184
- package/src/proto/collab_design_v2.ts +0 -224
- package/src/proto/collab_design_v3.ts +0 -255
- package/src/proto/collab_design_v4.ts +0 -220
- package/src/proto/collab_design_v5.ts +0 -251
- package/src/proto/collab_graph.ts +0 -181
- package/src/proto/collab_original.ts +0 -123
- package/src/proto/example.ts +0 -93
- package/src/proto/example_new.ts +0 -68
- package/src/proto/example_old.ts +0 -201
- package/src/proto/example_test.ts +0 -152
- package/src/proto/example_test_anthropic.ts +0 -100
- package/src/proto/log_stream.ts +0 -202
- package/src/proto/main_collab_community_event.ts +0 -133
- package/src/proto/main_collab_design_v2.ts +0 -96
- package/src/proto/main_collab_design_v4.ts +0 -100
- package/src/proto/main_collab_design_v5.ts +0 -135
- package/src/proto/main_collab_global_analysis.ts +0 -122
- package/src/proto/main_collab_hackathon_event.ts +0 -153
- package/src/proto/main_collab_space_mission.ts +0 -153
- package/src/proto/main_philosophy.ts +0 -210
- package/src/proto/original_script.ts +0 -126
- package/src/proto/standard.ts +0 -100
- package/src/proto/stream.ts +0 -56
- package/src/proto/tasks.ts +0 -118
- package/src/proto/tools/global_analysis_tools.ts +0 -86
- package/src/proto/tools/space_mission_tools.ts +0 -60
- package/src/proto/vertexai.ts +0 -54
package/src/splitStream.ts
CHANGED
|
@@ -1,234 +1,234 @@
|
|
|
1
|
-
import { nanoid } from 'nanoid';
|
|
2
|
-
import type * as t from '@/types';
|
|
3
|
-
import { ContentTypes, GraphEvents, StepTypes } from '@/common';
|
|
4
|
-
|
|
5
|
-
export const SEPARATORS = [
|
|
6
|
-
'. ',
|
|
7
|
-
'?',
|
|
8
|
-
'!',
|
|
9
|
-
'۔',
|
|
10
|
-
'- ',
|
|
11
|
-
'。',
|
|
12
|
-
'‥',
|
|
13
|
-
';',
|
|
14
|
-
'¡',
|
|
15
|
-
'¿',
|
|
16
|
-
'\n',
|
|
17
|
-
'```',
|
|
18
|
-
];
|
|
19
|
-
|
|
20
|
-
export class SplitStreamHandler {
|
|
21
|
-
private inCodeBlock = false;
|
|
22
|
-
private inThinkBlock = false;
|
|
23
|
-
private accumulate: boolean;
|
|
24
|
-
tokens: string[] = [];
|
|
25
|
-
lastToken = '';
|
|
26
|
-
reasoningTokens: string[] = [];
|
|
27
|
-
currentStepId?: string;
|
|
28
|
-
currentMessageId?: string;
|
|
29
|
-
currentType?: ContentTypes.TEXT | ContentTypes.THINK;
|
|
30
|
-
currentLength = 0;
|
|
31
|
-
reasoningKey: 'reasoning_content' | 'reasoning' = 'reasoning_content';
|
|
32
|
-
currentIndex = -1;
|
|
33
|
-
blockThreshold = 4500;
|
|
34
|
-
/** The run ID AKA the Message ID associated with the complete generation */
|
|
35
|
-
runId: string;
|
|
36
|
-
handlers?: t.SplitStreamHandlers;
|
|
37
|
-
constructor({
|
|
38
|
-
runId,
|
|
39
|
-
handlers,
|
|
40
|
-
accumulate,
|
|
41
|
-
reasoningKey,
|
|
42
|
-
blockThreshold,
|
|
43
|
-
}: {
|
|
44
|
-
runId: string;
|
|
45
|
-
accumulate?: boolean;
|
|
46
|
-
handlers: t.SplitStreamHandlers;
|
|
47
|
-
blockThreshold?: number;
|
|
48
|
-
reasoningKey?: 'reasoning_content' | 'reasoning';
|
|
49
|
-
}) {
|
|
50
|
-
this.runId = runId;
|
|
51
|
-
this.handlers = handlers;
|
|
52
|
-
if (reasoningKey) {
|
|
53
|
-
this.reasoningKey = reasoningKey;
|
|
54
|
-
}
|
|
55
|
-
if (blockThreshold != null) {
|
|
56
|
-
this.blockThreshold = blockThreshold;
|
|
57
|
-
}
|
|
58
|
-
this.accumulate = accumulate ?? false;
|
|
59
|
-
}
|
|
60
|
-
getMessageId = (): string | undefined => {
|
|
61
|
-
const messageId = this.currentMessageId;
|
|
62
|
-
if (messageId != null && messageId) {
|
|
63
|
-
return messageId;
|
|
64
|
-
}
|
|
65
|
-
return undefined;
|
|
66
|
-
};
|
|
67
|
-
createMessageStep = (
|
|
68
|
-
type?: ContentTypes.TEXT | ContentTypes.THINK
|
|
69
|
-
): [string, string] => {
|
|
70
|
-
if (type != null && this.currentType !== type) {
|
|
71
|
-
this.currentType = type;
|
|
72
|
-
}
|
|
73
|
-
this.currentLength = 0;
|
|
74
|
-
this.currentIndex += 1;
|
|
75
|
-
this.currentStepId = `step_${nanoid()}`;
|
|
76
|
-
this.currentMessageId = `msg_${nanoid()}`;
|
|
77
|
-
return [this.currentStepId, this.currentMessageId];
|
|
78
|
-
};
|
|
79
|
-
dispatchRunStep = (stepId: string, stepDetails: t.StepDetails): void => {
|
|
80
|
-
const runStep: t.RunStep = {
|
|
81
|
-
id: stepId,
|
|
82
|
-
runId: this.runId,
|
|
83
|
-
type: stepDetails.type,
|
|
84
|
-
index: this.currentIndex,
|
|
85
|
-
stepDetails,
|
|
86
|
-
// usage: null,
|
|
87
|
-
};
|
|
88
|
-
this.handlers?.[GraphEvents.ON_RUN_STEP]?.({
|
|
89
|
-
event: GraphEvents.ON_RUN_STEP,
|
|
90
|
-
data: runStep,
|
|
91
|
-
});
|
|
92
|
-
};
|
|
93
|
-
dispatchMessageDelta = (stepId: string, delta: t.MessageDelta): void => {
|
|
94
|
-
const messageDelta: t.MessageDeltaEvent = {
|
|
95
|
-
id: stepId,
|
|
96
|
-
delta,
|
|
97
|
-
};
|
|
98
|
-
this.handlers?.[GraphEvents.ON_MESSAGE_DELTA]?.({
|
|
99
|
-
event: GraphEvents.ON_MESSAGE_DELTA,
|
|
100
|
-
data: messageDelta,
|
|
101
|
-
});
|
|
102
|
-
};
|
|
103
|
-
dispatchReasoningDelta = (stepId: string, delta: t.ReasoningDelta): void => {
|
|
104
|
-
const reasoningDelta: t.ReasoningDeltaEvent = {
|
|
105
|
-
id: stepId,
|
|
106
|
-
delta,
|
|
107
|
-
};
|
|
108
|
-
this.handlers?.[GraphEvents.ON_REASONING_DELTA]?.({
|
|
109
|
-
event: GraphEvents.ON_REASONING_DELTA,
|
|
110
|
-
data: reasoningDelta,
|
|
111
|
-
});
|
|
112
|
-
};
|
|
113
|
-
handleContent = (
|
|
114
|
-
content: string,
|
|
115
|
-
_type: ContentTypes.TEXT | ContentTypes.THINK
|
|
116
|
-
): void => {
|
|
117
|
-
let type = _type;
|
|
118
|
-
if (this.inThinkBlock && type === ContentTypes.TEXT) {
|
|
119
|
-
type = ContentTypes.THINK;
|
|
120
|
-
}
|
|
121
|
-
if (this.accumulate) {
|
|
122
|
-
if (type === ContentTypes.THINK) {
|
|
123
|
-
this.reasoningTokens.push(content);
|
|
124
|
-
} else {
|
|
125
|
-
this.tokens.push(content);
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
if (this.currentType !== type) {
|
|
130
|
-
const [newStepId, newMessageId] = this.createMessageStep(type);
|
|
131
|
-
this.dispatchRunStep(newStepId, {
|
|
132
|
-
type: StepTypes.MESSAGE_CREATION,
|
|
133
|
-
message_creation: {
|
|
134
|
-
message_id: newMessageId,
|
|
135
|
-
},
|
|
136
|
-
});
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
const stepId = this.currentStepId ?? '';
|
|
140
|
-
if (type === ContentTypes.THINK) {
|
|
141
|
-
this.dispatchReasoningDelta(stepId, {
|
|
142
|
-
content: [
|
|
143
|
-
{
|
|
144
|
-
type: ContentTypes.THINK,
|
|
145
|
-
think: content,
|
|
146
|
-
},
|
|
147
|
-
],
|
|
148
|
-
});
|
|
149
|
-
} else {
|
|
150
|
-
this.dispatchMessageDelta(stepId, {
|
|
151
|
-
content: [
|
|
152
|
-
{
|
|
153
|
-
type: ContentTypes.TEXT,
|
|
154
|
-
text: content,
|
|
155
|
-
},
|
|
156
|
-
],
|
|
157
|
-
});
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
this.currentLength += content.length;
|
|
161
|
-
if (this.inCodeBlock) {
|
|
162
|
-
return;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
if (
|
|
166
|
-
this.currentLength > this.blockThreshold &&
|
|
167
|
-
SEPARATORS.some((sep) => content.includes(sep))
|
|
168
|
-
) {
|
|
169
|
-
const [newStepId, newMessageId] = this.createMessageStep(type);
|
|
170
|
-
this.dispatchRunStep(newStepId, {
|
|
171
|
-
type: StepTypes.MESSAGE_CREATION,
|
|
172
|
-
message_creation: {
|
|
173
|
-
message_id: newMessageId,
|
|
174
|
-
},
|
|
175
|
-
});
|
|
176
|
-
}
|
|
177
|
-
};
|
|
178
|
-
getDeltaContent(chunk?: t.CustomChunk): string {
|
|
179
|
-
return (chunk?.choices?.[0]?.delta as t.CustomChunkDelta)?.content ?? '';
|
|
180
|
-
}
|
|
181
|
-
getReasoningDelta(chunk?: t.CustomChunk): string {
|
|
182
|
-
return (
|
|
183
|
-
(chunk?.choices?.[0]?.delta as t.CustomChunkDelta)?.[this.reasoningKey] ??
|
|
184
|
-
''
|
|
185
|
-
);
|
|
186
|
-
}
|
|
187
|
-
handle(chunk?: t.CustomChunk): void {
|
|
188
|
-
if (!chunk) {
|
|
189
|
-
return;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
const content = this.getDeltaContent(chunk);
|
|
193
|
-
const reasoning_content = this.getReasoningDelta(chunk);
|
|
194
|
-
if (!content.length && !reasoning_content.length) {
|
|
195
|
-
return;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
if (content.includes('```')) {
|
|
199
|
-
this.inCodeBlock = !this.inCodeBlock;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
if (content.includes('<think>') && !this.inCodeBlock) {
|
|
203
|
-
this.inThinkBlock = true;
|
|
204
|
-
} else if (this.lastToken.includes('</think>') && !this.inCodeBlock) {
|
|
205
|
-
this.inThinkBlock = false;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
this.lastToken = content;
|
|
209
|
-
|
|
210
|
-
const message_id = this.getMessageId() ?? '';
|
|
211
|
-
|
|
212
|
-
if (!message_id) {
|
|
213
|
-
const initialContentType = this.inThinkBlock
|
|
214
|
-
? ContentTypes.THINK
|
|
215
|
-
: ContentTypes.TEXT;
|
|
216
|
-
const initialType = reasoning_content
|
|
217
|
-
? ContentTypes.THINK
|
|
218
|
-
: initialContentType;
|
|
219
|
-
const [stepId, message_id] = this.createMessageStep(initialType);
|
|
220
|
-
this.dispatchRunStep(stepId, {
|
|
221
|
-
type: StepTypes.MESSAGE_CREATION,
|
|
222
|
-
message_creation: {
|
|
223
|
-
message_id,
|
|
224
|
-
},
|
|
225
|
-
});
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
if (reasoning_content) {
|
|
229
|
-
this.handleContent(reasoning_content, ContentTypes.THINK);
|
|
230
|
-
} else {
|
|
231
|
-
this.handleContent(content, ContentTypes.TEXT);
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
}
|
|
1
|
+
import { nanoid } from 'nanoid';
|
|
2
|
+
import type * as t from '@/types';
|
|
3
|
+
import { ContentTypes, GraphEvents, StepTypes } from '@/common';
|
|
4
|
+
|
|
5
|
+
export const SEPARATORS = [
|
|
6
|
+
'. ',
|
|
7
|
+
'?',
|
|
8
|
+
'!',
|
|
9
|
+
'۔',
|
|
10
|
+
'- ',
|
|
11
|
+
'。',
|
|
12
|
+
'‥',
|
|
13
|
+
';',
|
|
14
|
+
'¡',
|
|
15
|
+
'¿',
|
|
16
|
+
'\n',
|
|
17
|
+
'```',
|
|
18
|
+
];
|
|
19
|
+
|
|
20
|
+
export class SplitStreamHandler {
|
|
21
|
+
private inCodeBlock = false;
|
|
22
|
+
private inThinkBlock = false;
|
|
23
|
+
private accumulate: boolean;
|
|
24
|
+
tokens: string[] = [];
|
|
25
|
+
lastToken = '';
|
|
26
|
+
reasoningTokens: string[] = [];
|
|
27
|
+
currentStepId?: string;
|
|
28
|
+
currentMessageId?: string;
|
|
29
|
+
currentType?: ContentTypes.TEXT | ContentTypes.THINK;
|
|
30
|
+
currentLength = 0;
|
|
31
|
+
reasoningKey: 'reasoning_content' | 'reasoning' = 'reasoning_content';
|
|
32
|
+
currentIndex = -1;
|
|
33
|
+
blockThreshold = 4500;
|
|
34
|
+
/** The run ID AKA the Message ID associated with the complete generation */
|
|
35
|
+
runId: string;
|
|
36
|
+
handlers?: t.SplitStreamHandlers;
|
|
37
|
+
constructor({
|
|
38
|
+
runId,
|
|
39
|
+
handlers,
|
|
40
|
+
accumulate,
|
|
41
|
+
reasoningKey,
|
|
42
|
+
blockThreshold,
|
|
43
|
+
}: {
|
|
44
|
+
runId: string;
|
|
45
|
+
accumulate?: boolean;
|
|
46
|
+
handlers: t.SplitStreamHandlers;
|
|
47
|
+
blockThreshold?: number;
|
|
48
|
+
reasoningKey?: 'reasoning_content' | 'reasoning';
|
|
49
|
+
}) {
|
|
50
|
+
this.runId = runId;
|
|
51
|
+
this.handlers = handlers;
|
|
52
|
+
if (reasoningKey) {
|
|
53
|
+
this.reasoningKey = reasoningKey;
|
|
54
|
+
}
|
|
55
|
+
if (blockThreshold != null) {
|
|
56
|
+
this.blockThreshold = blockThreshold;
|
|
57
|
+
}
|
|
58
|
+
this.accumulate = accumulate ?? false;
|
|
59
|
+
}
|
|
60
|
+
getMessageId = (): string | undefined => {
|
|
61
|
+
const messageId = this.currentMessageId;
|
|
62
|
+
if (messageId != null && messageId) {
|
|
63
|
+
return messageId;
|
|
64
|
+
}
|
|
65
|
+
return undefined;
|
|
66
|
+
};
|
|
67
|
+
createMessageStep = (
|
|
68
|
+
type?: ContentTypes.TEXT | ContentTypes.THINK
|
|
69
|
+
): [string, string] => {
|
|
70
|
+
if (type != null && this.currentType !== type) {
|
|
71
|
+
this.currentType = type;
|
|
72
|
+
}
|
|
73
|
+
this.currentLength = 0;
|
|
74
|
+
this.currentIndex += 1;
|
|
75
|
+
this.currentStepId = `step_${nanoid()}`;
|
|
76
|
+
this.currentMessageId = `msg_${nanoid()}`;
|
|
77
|
+
return [this.currentStepId, this.currentMessageId];
|
|
78
|
+
};
|
|
79
|
+
dispatchRunStep = (stepId: string, stepDetails: t.StepDetails): void => {
|
|
80
|
+
const runStep: t.RunStep = {
|
|
81
|
+
id: stepId,
|
|
82
|
+
runId: this.runId,
|
|
83
|
+
type: stepDetails.type,
|
|
84
|
+
index: this.currentIndex,
|
|
85
|
+
stepDetails,
|
|
86
|
+
// usage: null,
|
|
87
|
+
};
|
|
88
|
+
this.handlers?.[GraphEvents.ON_RUN_STEP]?.({
|
|
89
|
+
event: GraphEvents.ON_RUN_STEP,
|
|
90
|
+
data: runStep,
|
|
91
|
+
});
|
|
92
|
+
};
|
|
93
|
+
dispatchMessageDelta = (stepId: string, delta: t.MessageDelta): void => {
|
|
94
|
+
const messageDelta: t.MessageDeltaEvent = {
|
|
95
|
+
id: stepId,
|
|
96
|
+
delta,
|
|
97
|
+
};
|
|
98
|
+
this.handlers?.[GraphEvents.ON_MESSAGE_DELTA]?.({
|
|
99
|
+
event: GraphEvents.ON_MESSAGE_DELTA,
|
|
100
|
+
data: messageDelta,
|
|
101
|
+
});
|
|
102
|
+
};
|
|
103
|
+
dispatchReasoningDelta = (stepId: string, delta: t.ReasoningDelta): void => {
|
|
104
|
+
const reasoningDelta: t.ReasoningDeltaEvent = {
|
|
105
|
+
id: stepId,
|
|
106
|
+
delta,
|
|
107
|
+
};
|
|
108
|
+
this.handlers?.[GraphEvents.ON_REASONING_DELTA]?.({
|
|
109
|
+
event: GraphEvents.ON_REASONING_DELTA,
|
|
110
|
+
data: reasoningDelta,
|
|
111
|
+
});
|
|
112
|
+
};
|
|
113
|
+
handleContent = (
|
|
114
|
+
content: string,
|
|
115
|
+
_type: ContentTypes.TEXT | ContentTypes.THINK
|
|
116
|
+
): void => {
|
|
117
|
+
let type = _type;
|
|
118
|
+
if (this.inThinkBlock && type === ContentTypes.TEXT) {
|
|
119
|
+
type = ContentTypes.THINK;
|
|
120
|
+
}
|
|
121
|
+
if (this.accumulate) {
|
|
122
|
+
if (type === ContentTypes.THINK) {
|
|
123
|
+
this.reasoningTokens.push(content);
|
|
124
|
+
} else {
|
|
125
|
+
this.tokens.push(content);
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
if (this.currentType !== type) {
|
|
130
|
+
const [newStepId, newMessageId] = this.createMessageStep(type);
|
|
131
|
+
this.dispatchRunStep(newStepId, {
|
|
132
|
+
type: StepTypes.MESSAGE_CREATION,
|
|
133
|
+
message_creation: {
|
|
134
|
+
message_id: newMessageId,
|
|
135
|
+
},
|
|
136
|
+
});
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
const stepId = this.currentStepId ?? '';
|
|
140
|
+
if (type === ContentTypes.THINK) {
|
|
141
|
+
this.dispatchReasoningDelta(stepId, {
|
|
142
|
+
content: [
|
|
143
|
+
{
|
|
144
|
+
type: ContentTypes.THINK,
|
|
145
|
+
think: content,
|
|
146
|
+
},
|
|
147
|
+
],
|
|
148
|
+
});
|
|
149
|
+
} else {
|
|
150
|
+
this.dispatchMessageDelta(stepId, {
|
|
151
|
+
content: [
|
|
152
|
+
{
|
|
153
|
+
type: ContentTypes.TEXT,
|
|
154
|
+
text: content,
|
|
155
|
+
},
|
|
156
|
+
],
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
this.currentLength += content.length;
|
|
161
|
+
if (this.inCodeBlock) {
|
|
162
|
+
return;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
if (
|
|
166
|
+
this.currentLength > this.blockThreshold &&
|
|
167
|
+
SEPARATORS.some((sep) => content.includes(sep))
|
|
168
|
+
) {
|
|
169
|
+
const [newStepId, newMessageId] = this.createMessageStep(type);
|
|
170
|
+
this.dispatchRunStep(newStepId, {
|
|
171
|
+
type: StepTypes.MESSAGE_CREATION,
|
|
172
|
+
message_creation: {
|
|
173
|
+
message_id: newMessageId,
|
|
174
|
+
},
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
};
|
|
178
|
+
getDeltaContent(chunk?: t.CustomChunk): string {
|
|
179
|
+
return (chunk?.choices?.[0]?.delta as t.CustomChunkDelta)?.content ?? '';
|
|
180
|
+
}
|
|
181
|
+
getReasoningDelta(chunk?: t.CustomChunk): string {
|
|
182
|
+
return (
|
|
183
|
+
(chunk?.choices?.[0]?.delta as t.CustomChunkDelta)?.[this.reasoningKey] ??
|
|
184
|
+
''
|
|
185
|
+
);
|
|
186
|
+
}
|
|
187
|
+
handle(chunk?: t.CustomChunk): void {
|
|
188
|
+
if (!chunk) {
|
|
189
|
+
return;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
const content = this.getDeltaContent(chunk);
|
|
193
|
+
const reasoning_content = this.getReasoningDelta(chunk);
|
|
194
|
+
if (!content.length && !reasoning_content.length) {
|
|
195
|
+
return;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
if (content.includes('```')) {
|
|
199
|
+
this.inCodeBlock = !this.inCodeBlock;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
if (content.includes('<think>') && !this.inCodeBlock) {
|
|
203
|
+
this.inThinkBlock = true;
|
|
204
|
+
} else if (this.lastToken.includes('</think>') && !this.inCodeBlock) {
|
|
205
|
+
this.inThinkBlock = false;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
this.lastToken = content;
|
|
209
|
+
|
|
210
|
+
const message_id = this.getMessageId() ?? '';
|
|
211
|
+
|
|
212
|
+
if (!message_id) {
|
|
213
|
+
const initialContentType = this.inThinkBlock
|
|
214
|
+
? ContentTypes.THINK
|
|
215
|
+
: ContentTypes.TEXT;
|
|
216
|
+
const initialType = reasoning_content
|
|
217
|
+
? ContentTypes.THINK
|
|
218
|
+
: initialContentType;
|
|
219
|
+
const [stepId, message_id] = this.createMessageStep(initialType);
|
|
220
|
+
this.dispatchRunStep(stepId, {
|
|
221
|
+
type: StepTypes.MESSAGE_CREATION,
|
|
222
|
+
message_creation: {
|
|
223
|
+
message_id,
|
|
224
|
+
},
|
|
225
|
+
});
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
if (reasoning_content) {
|
|
229
|
+
this.handleContent(reasoning_content, ContentTypes.THINK);
|
|
230
|
+
} else {
|
|
231
|
+
this.handleContent(content, ContentTypes.TEXT);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
package/src/stream.test.ts
CHANGED
|
@@ -1,94 +1,94 @@
|
|
|
1
|
-
import type { AIMessageChunk } from '@langchain/core/messages';
|
|
2
|
-
import type { ChatOpenAIReasoningSummary } from '@langchain/openai';
|
|
3
|
-
import { getChunkContent } from './stream';
|
|
4
|
-
import { Providers } from '@/common';
|
|
5
|
-
|
|
6
|
-
describe('getChunkContent', () => {
|
|
7
|
-
it('should handle reasoning content for OpenAI/Azure providers', () => {
|
|
8
|
-
const chunk: Partial<AIMessageChunk> = {
|
|
9
|
-
content: 'Regular content',
|
|
10
|
-
additional_kwargs: {
|
|
11
|
-
reasoning: {
|
|
12
|
-
summary: [{ text: 'Reasoning summary text' }],
|
|
13
|
-
} as Partial<ChatOpenAIReasoningSummary>,
|
|
14
|
-
},
|
|
15
|
-
};
|
|
16
|
-
|
|
17
|
-
const result = getChunkContent({
|
|
18
|
-
chunk,
|
|
19
|
-
provider: Providers.OPENAI,
|
|
20
|
-
reasoningKey: 'reasoning',
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
expect(result).toBe('Reasoning summary text');
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
it('should fallback to reasoningKey when no OpenAI reasoning summary', () => {
|
|
27
|
-
const chunk: Partial<AIMessageChunk> = {
|
|
28
|
-
content: 'Regular content',
|
|
29
|
-
additional_kwargs: {
|
|
30
|
-
reasoning_content: 'Reasoning from key',
|
|
31
|
-
},
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
const result = getChunkContent({
|
|
35
|
-
chunk,
|
|
36
|
-
reasoningKey: 'reasoning_content',
|
|
37
|
-
});
|
|
38
|
-
|
|
39
|
-
expect(result).toBe('Reasoning from key');
|
|
40
|
-
});
|
|
41
|
-
|
|
42
|
-
it('should fallback to chunk.content when reasoningKey value is null or undefined', () => {
|
|
43
|
-
const chunk: Partial<AIMessageChunk> = {
|
|
44
|
-
content: 'Fallback content',
|
|
45
|
-
additional_kwargs: {
|
|
46
|
-
reasoning_content: null,
|
|
47
|
-
},
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
const result = getChunkContent({
|
|
51
|
-
chunk,
|
|
52
|
-
reasoningKey: 'reasoning_content',
|
|
53
|
-
});
|
|
54
|
-
|
|
55
|
-
expect(result).toBe('Fallback content');
|
|
56
|
-
});
|
|
57
|
-
|
|
58
|
-
it('should fallback to chunk.content when reasoningKey value is empty string', () => {
|
|
59
|
-
const chunk: Partial<AIMessageChunk> = {
|
|
60
|
-
content: ' can',
|
|
61
|
-
additional_kwargs: {
|
|
62
|
-
reasoning_content: '',
|
|
63
|
-
},
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
const result = getChunkContent({
|
|
67
|
-
chunk,
|
|
68
|
-
reasoningKey: 'reasoning_content',
|
|
69
|
-
});
|
|
70
|
-
|
|
71
|
-
expect(result).toBe(' can');
|
|
72
|
-
});
|
|
73
|
-
|
|
74
|
-
it('should return undefined when no content is available', () => {
|
|
75
|
-
const chunk: Partial<AIMessageChunk> = {
|
|
76
|
-
additional_kwargs: {},
|
|
77
|
-
};
|
|
78
|
-
|
|
79
|
-
const result = getChunkContent({
|
|
80
|
-
chunk,
|
|
81
|
-
reasoningKey: 'reasoning',
|
|
82
|
-
});
|
|
83
|
-
|
|
84
|
-
expect(result).toBeUndefined();
|
|
85
|
-
});
|
|
86
|
-
|
|
87
|
-
it('should handle missing chunk gracefully', () => {
|
|
88
|
-
const result = getChunkContent({
|
|
89
|
-
reasoningKey: 'reasoning',
|
|
90
|
-
});
|
|
91
|
-
|
|
92
|
-
expect(result).toBeUndefined();
|
|
93
|
-
});
|
|
94
|
-
});
|
|
1
|
+
import type { AIMessageChunk } from '@langchain/core/messages';
|
|
2
|
+
import type { ChatOpenAIReasoningSummary } from '@langchain/openai';
|
|
3
|
+
import { getChunkContent } from './stream';
|
|
4
|
+
import { Providers } from '@/common';
|
|
5
|
+
|
|
6
|
+
describe('getChunkContent', () => {
|
|
7
|
+
it('should handle reasoning content for OpenAI/Azure providers', () => {
|
|
8
|
+
const chunk: Partial<AIMessageChunk> = {
|
|
9
|
+
content: 'Regular content',
|
|
10
|
+
additional_kwargs: {
|
|
11
|
+
reasoning: {
|
|
12
|
+
summary: [{ text: 'Reasoning summary text' }],
|
|
13
|
+
} as Partial<ChatOpenAIReasoningSummary>,
|
|
14
|
+
},
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
const result = getChunkContent({
|
|
18
|
+
chunk,
|
|
19
|
+
provider: Providers.OPENAI,
|
|
20
|
+
reasoningKey: 'reasoning',
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
expect(result).toBe('Reasoning summary text');
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
it('should fallback to reasoningKey when no OpenAI reasoning summary', () => {
|
|
27
|
+
const chunk: Partial<AIMessageChunk> = {
|
|
28
|
+
content: 'Regular content',
|
|
29
|
+
additional_kwargs: {
|
|
30
|
+
reasoning_content: 'Reasoning from key',
|
|
31
|
+
},
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
const result = getChunkContent({
|
|
35
|
+
chunk,
|
|
36
|
+
reasoningKey: 'reasoning_content',
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
expect(result).toBe('Reasoning from key');
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
it('should fallback to chunk.content when reasoningKey value is null or undefined', () => {
|
|
43
|
+
const chunk: Partial<AIMessageChunk> = {
|
|
44
|
+
content: 'Fallback content',
|
|
45
|
+
additional_kwargs: {
|
|
46
|
+
reasoning_content: null,
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
|
|
50
|
+
const result = getChunkContent({
|
|
51
|
+
chunk,
|
|
52
|
+
reasoningKey: 'reasoning_content',
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
expect(result).toBe('Fallback content');
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
it('should fallback to chunk.content when reasoningKey value is empty string', () => {
|
|
59
|
+
const chunk: Partial<AIMessageChunk> = {
|
|
60
|
+
content: ' can',
|
|
61
|
+
additional_kwargs: {
|
|
62
|
+
reasoning_content: '',
|
|
63
|
+
},
|
|
64
|
+
};
|
|
65
|
+
|
|
66
|
+
const result = getChunkContent({
|
|
67
|
+
chunk,
|
|
68
|
+
reasoningKey: 'reasoning_content',
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
expect(result).toBe(' can');
|
|
72
|
+
});
|
|
73
|
+
|
|
74
|
+
it('should return undefined when no content is available', () => {
|
|
75
|
+
const chunk: Partial<AIMessageChunk> = {
|
|
76
|
+
additional_kwargs: {},
|
|
77
|
+
};
|
|
78
|
+
|
|
79
|
+
const result = getChunkContent({
|
|
80
|
+
chunk,
|
|
81
|
+
reasoningKey: 'reasoning',
|
|
82
|
+
});
|
|
83
|
+
|
|
84
|
+
expect(result).toBeUndefined();
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
it('should handle missing chunk gracefully', () => {
|
|
88
|
+
const result = getChunkContent({
|
|
89
|
+
reasoningKey: 'reasoning',
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
expect(result).toBeUndefined();
|
|
93
|
+
});
|
|
94
|
+
});
|
package/src/stream.ts
CHANGED
|
@@ -155,7 +155,10 @@ export class ChatModelStreamHandler implements t.EventHandler {
|
|
|
155
155
|
chunk.tool_calls.length > 0 &&
|
|
156
156
|
chunk.tool_calls.every(
|
|
157
157
|
(tc) =>
|
|
158
|
-
tc.id != null &&
|
|
158
|
+
tc.id != null &&
|
|
159
|
+
tc.id !== '' &&
|
|
160
|
+
(tc as Partial<ToolCall>).name != null &&
|
|
161
|
+
tc.name !== ''
|
|
159
162
|
)
|
|
160
163
|
) {
|
|
161
164
|
hasToolCalls = true;
|