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.
- package/LICENSE +1 -5
- package/dist/cjs/common/enum.cjs +1 -2
- package/dist/cjs/common/enum.cjs.map +1 -1
- package/dist/cjs/events.cjs +11 -0
- package/dist/cjs/events.cjs.map +1 -1
- package/dist/cjs/graphs/Graph.cjs +2 -1
- package/dist/cjs/graphs/Graph.cjs.map +1 -1
- package/dist/cjs/instrumentation.cjs +3 -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/openai/index.cjs +102 -0
- package/dist/cjs/llm/openai/index.cjs.map +1 -1
- package/dist/cjs/llm/openai/utils/index.cjs +87 -1
- package/dist/cjs/llm/openai/utils/index.cjs.map +1 -1
- package/dist/cjs/llm/openrouter/index.cjs +175 -1
- package/dist/cjs/llm/openrouter/index.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 +18 -1
- package/dist/cjs/run.cjs.map +1 -1
- package/dist/cjs/splitStream.cjs.map +1 -1
- package/dist/cjs/stream.cjs +24 -1
- package/dist/cjs/stream.cjs.map +1 -1
- package/dist/cjs/tools/ToolNode.cjs +20 -1
- 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 +27 -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 +182 -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/events.mjs +11 -0
- package/dist/esm/events.mjs.map +1 -1
- package/dist/esm/graphs/Graph.mjs +2 -1
- package/dist/esm/graphs/Graph.mjs.map +1 -1
- package/dist/esm/instrumentation.mjs +3 -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/openai/index.mjs +103 -1
- package/dist/esm/llm/openai/index.mjs.map +1 -1
- package/dist/esm/llm/openai/utils/index.mjs +88 -2
- package/dist/esm/llm/openai/utils/index.mjs.map +1 -1
- package/dist/esm/llm/openrouter/index.mjs +175 -1
- package/dist/esm/llm/openrouter/index.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 +18 -1
- package/dist/esm/run.mjs.map +1 -1
- package/dist/esm/splitStream.mjs.map +1 -1
- package/dist/esm/stream.mjs +24 -1
- package/dist/esm/stream.mjs.map +1 -1
- package/dist/esm/tools/ToolNode.mjs +20 -1
- 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 +27 -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 +182 -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/openai/index.d.ts +1 -0
- package/dist/types/llm/openai/utils/index.d.ts +10 -1
- package/dist/types/llm/openrouter/index.d.ts +4 -1
- package/dist/types/tools/search/types.d.ts +2 -0
- package/dist/types/types/llm.d.ts +3 -8
- package/package.json +16 -12
- package/src/common/enum.ts +1 -2
- package/src/common/index.ts +1 -1
- package/src/events.ts +11 -0
- package/src/graphs/Graph.ts +2 -1
- package/src/instrumentation.ts +25 -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/llm.spec.ts +3 -1
- package/src/llm/google/utils/tools.ts +160 -160
- package/src/llm/openai/index.ts +126 -0
- package/src/llm/openai/types.ts +24 -24
- package/src/llm/openai/utils/index.ts +116 -1
- package/src/llm/openai/utils/isReasoningModel.test.ts +90 -90
- package/src/llm/openrouter/index.ts +222 -1
- 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 +22 -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/memory.ts +97 -97
- package/src/scripts/test-tools-before-handoff.ts +1 -5
- package/src/scripts/thinking.ts +149 -149
- package/src/scripts/tools.ts +1 -4
- 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 +30 -1
- package/src/tools/ToolNode.ts +24 -1
- 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 +65 -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 +641 -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/utils/graph.ts +10 -10
- package/src/utils/llm.ts +26 -27
- package/src/utils/llmConfig.ts +13 -5
- 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/scripts/image.ts +0 -178
package/src/llm/fake.ts
CHANGED
|
@@ -1,133 +1,133 @@
|
|
|
1
|
-
import { ChatGenerationChunk } from '@langchain/core/outputs';
|
|
2
|
-
import { AIMessageChunk } from '@langchain/core/messages';
|
|
3
|
-
import type { CallbackManagerForLLMRun } from '@langchain/core/callbacks/manager';
|
|
4
|
-
import type { BaseMessage } from '@langchain/core/messages';
|
|
5
|
-
import { FakeListChatModel } from '@langchain/core/utils/testing';
|
|
6
|
-
import { ToolCall, ToolCallChunk } from '@langchain/core/messages/tool';
|
|
7
|
-
|
|
8
|
-
type SplitStrategy = {
|
|
9
|
-
type: 'regex' | 'fixed';
|
|
10
|
-
value: RegExp | number;
|
|
11
|
-
};
|
|
12
|
-
|
|
13
|
-
export class FakeChatModel extends FakeListChatModel {
|
|
14
|
-
private splitStrategy: SplitStrategy;
|
|
15
|
-
private toolCalls: ToolCall[] = [];
|
|
16
|
-
private addedToolCalls: boolean = false;
|
|
17
|
-
|
|
18
|
-
constructor({
|
|
19
|
-
responses,
|
|
20
|
-
sleep,
|
|
21
|
-
emitCustomEvent,
|
|
22
|
-
splitStrategy = { type: 'regex', value: /(?<=\s+)|(?=\s+)/ },
|
|
23
|
-
toolCalls = []
|
|
24
|
-
}: {
|
|
25
|
-
responses: string[];
|
|
26
|
-
sleep?: number;
|
|
27
|
-
emitCustomEvent?: boolean;
|
|
28
|
-
splitStrategy?: SplitStrategy;
|
|
29
|
-
toolCalls?: ToolCall[];
|
|
30
|
-
}) {
|
|
31
|
-
super({ responses, sleep, emitCustomEvent });
|
|
32
|
-
this.splitStrategy = splitStrategy;
|
|
33
|
-
this.toolCalls = toolCalls;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
private splitText(text: string): string[] {
|
|
37
|
-
if (this.splitStrategy.type === 'regex') {
|
|
38
|
-
return text.split(this.splitStrategy.value as RegExp);
|
|
39
|
-
} else {
|
|
40
|
-
const chunkSize = this.splitStrategy.value as number;
|
|
41
|
-
const chunks: string[] = [];
|
|
42
|
-
for (let i = 0; i < text.length; i += chunkSize) {
|
|
43
|
-
chunks.push(text.slice(i, i + chunkSize));
|
|
44
|
-
}
|
|
45
|
-
return chunks;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
_createResponseChunk(text: string, tool_call_chunks?: ToolCallChunk[]): ChatGenerationChunk {
|
|
49
|
-
return new ChatGenerationChunk({
|
|
50
|
-
text,
|
|
51
|
-
generationInfo: {},
|
|
52
|
-
message: new AIMessageChunk({
|
|
53
|
-
content: text,
|
|
54
|
-
tool_call_chunks,
|
|
55
|
-
additional_kwargs: tool_call_chunks ? {
|
|
56
|
-
tool_calls: tool_call_chunks.map((toolCall) => ({
|
|
57
|
-
index: toolCall.index ?? 0,
|
|
58
|
-
id: toolCall.id ?? '',
|
|
59
|
-
type: 'function',
|
|
60
|
-
function: {
|
|
61
|
-
name: toolCall.name ?? '',
|
|
62
|
-
arguments: toolCall.args ?? '',
|
|
63
|
-
},
|
|
64
|
-
})),
|
|
65
|
-
} : undefined,
|
|
66
|
-
})});
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
async *_streamResponseChunks(
|
|
70
|
-
_messages: BaseMessage[],
|
|
71
|
-
options: this['ParsedCallOptions'],
|
|
72
|
-
runManager?: CallbackManagerForLLMRun
|
|
73
|
-
): AsyncGenerator<ChatGenerationChunk> {
|
|
74
|
-
const response = this._currentResponse();
|
|
75
|
-
this._incrementResponse();
|
|
76
|
-
|
|
77
|
-
if (this.emitCustomEvent) {
|
|
78
|
-
await runManager?.handleCustomEvent('some_test_event', {
|
|
79
|
-
someval: true,
|
|
80
|
-
});
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
const chunks = this.splitText(response);
|
|
84
|
-
for await (const chunk of chunks) {
|
|
85
|
-
await this._sleepIfRequested();
|
|
86
|
-
|
|
87
|
-
if (options.thrownErrorString != null && options.thrownErrorString) {
|
|
88
|
-
throw new Error(options.thrownErrorString);
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
const responseChunk = super._createResponseChunk(chunk);
|
|
92
|
-
yield responseChunk;
|
|
93
|
-
void runManager?.handleLLMNewToken(chunk);
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
await this._sleepIfRequested();
|
|
97
|
-
if (this.toolCalls.length > 0 && !this.addedToolCalls) {
|
|
98
|
-
this.addedToolCalls = true;
|
|
99
|
-
const toolCallChunks = this.toolCalls.map((toolCall) => {;
|
|
100
|
-
return {
|
|
101
|
-
name: toolCall.name,
|
|
102
|
-
args: JSON.stringify(toolCall.args),
|
|
103
|
-
id: toolCall.id,
|
|
104
|
-
type: 'tool_call_chunk',
|
|
105
|
-
} as ToolCallChunk;
|
|
106
|
-
});
|
|
107
|
-
const responseChunk = this._createResponseChunk('', toolCallChunks);
|
|
108
|
-
yield responseChunk;
|
|
109
|
-
void runManager?.handleLLMNewToken('');
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
export function createFakeStreamingLLM({
|
|
115
|
-
responses,
|
|
116
|
-
sleep,
|
|
117
|
-
splitStrategy,
|
|
118
|
-
toolCalls,
|
|
119
|
-
} : {
|
|
120
|
-
responses: string[],
|
|
121
|
-
sleep?: number,
|
|
122
|
-
splitStrategy?: SplitStrategy,
|
|
123
|
-
toolCalls?: ToolCall[]
|
|
124
|
-
}
|
|
125
|
-
): FakeChatModel {
|
|
126
|
-
return new FakeChatModel({
|
|
127
|
-
sleep,
|
|
128
|
-
responses,
|
|
129
|
-
emitCustomEvent: true,
|
|
130
|
-
splitStrategy,
|
|
131
|
-
toolCalls,
|
|
132
|
-
});
|
|
133
|
-
}
|
|
1
|
+
import { ChatGenerationChunk } from '@langchain/core/outputs';
|
|
2
|
+
import { AIMessageChunk } from '@langchain/core/messages';
|
|
3
|
+
import type { CallbackManagerForLLMRun } from '@langchain/core/callbacks/manager';
|
|
4
|
+
import type { BaseMessage } from '@langchain/core/messages';
|
|
5
|
+
import { FakeListChatModel } from '@langchain/core/utils/testing';
|
|
6
|
+
import { ToolCall, ToolCallChunk } from '@langchain/core/messages/tool';
|
|
7
|
+
|
|
8
|
+
type SplitStrategy = {
|
|
9
|
+
type: 'regex' | 'fixed';
|
|
10
|
+
value: RegExp | number;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
export class FakeChatModel extends FakeListChatModel {
|
|
14
|
+
private splitStrategy: SplitStrategy;
|
|
15
|
+
private toolCalls: ToolCall[] = [];
|
|
16
|
+
private addedToolCalls: boolean = false;
|
|
17
|
+
|
|
18
|
+
constructor({
|
|
19
|
+
responses,
|
|
20
|
+
sleep,
|
|
21
|
+
emitCustomEvent,
|
|
22
|
+
splitStrategy = { type: 'regex', value: /(?<=\s+)|(?=\s+)/ },
|
|
23
|
+
toolCalls = []
|
|
24
|
+
}: {
|
|
25
|
+
responses: string[];
|
|
26
|
+
sleep?: number;
|
|
27
|
+
emitCustomEvent?: boolean;
|
|
28
|
+
splitStrategy?: SplitStrategy;
|
|
29
|
+
toolCalls?: ToolCall[];
|
|
30
|
+
}) {
|
|
31
|
+
super({ responses, sleep, emitCustomEvent });
|
|
32
|
+
this.splitStrategy = splitStrategy;
|
|
33
|
+
this.toolCalls = toolCalls;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
private splitText(text: string): string[] {
|
|
37
|
+
if (this.splitStrategy.type === 'regex') {
|
|
38
|
+
return text.split(this.splitStrategy.value as RegExp);
|
|
39
|
+
} else {
|
|
40
|
+
const chunkSize = this.splitStrategy.value as number;
|
|
41
|
+
const chunks: string[] = [];
|
|
42
|
+
for (let i = 0; i < text.length; i += chunkSize) {
|
|
43
|
+
chunks.push(text.slice(i, i + chunkSize));
|
|
44
|
+
}
|
|
45
|
+
return chunks;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
_createResponseChunk(text: string, tool_call_chunks?: ToolCallChunk[]): ChatGenerationChunk {
|
|
49
|
+
return new ChatGenerationChunk({
|
|
50
|
+
text,
|
|
51
|
+
generationInfo: {},
|
|
52
|
+
message: new AIMessageChunk({
|
|
53
|
+
content: text,
|
|
54
|
+
tool_call_chunks,
|
|
55
|
+
additional_kwargs: tool_call_chunks ? {
|
|
56
|
+
tool_calls: tool_call_chunks.map((toolCall) => ({
|
|
57
|
+
index: toolCall.index ?? 0,
|
|
58
|
+
id: toolCall.id ?? '',
|
|
59
|
+
type: 'function',
|
|
60
|
+
function: {
|
|
61
|
+
name: toolCall.name ?? '',
|
|
62
|
+
arguments: toolCall.args ?? '',
|
|
63
|
+
},
|
|
64
|
+
})),
|
|
65
|
+
} : undefined,
|
|
66
|
+
})});
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
async *_streamResponseChunks(
|
|
70
|
+
_messages: BaseMessage[],
|
|
71
|
+
options: this['ParsedCallOptions'],
|
|
72
|
+
runManager?: CallbackManagerForLLMRun
|
|
73
|
+
): AsyncGenerator<ChatGenerationChunk> {
|
|
74
|
+
const response = this._currentResponse();
|
|
75
|
+
this._incrementResponse();
|
|
76
|
+
|
|
77
|
+
if (this.emitCustomEvent) {
|
|
78
|
+
await runManager?.handleCustomEvent('some_test_event', {
|
|
79
|
+
someval: true,
|
|
80
|
+
});
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
const chunks = this.splitText(response);
|
|
84
|
+
for await (const chunk of chunks) {
|
|
85
|
+
await this._sleepIfRequested();
|
|
86
|
+
|
|
87
|
+
if (options.thrownErrorString != null && options.thrownErrorString) {
|
|
88
|
+
throw new Error(options.thrownErrorString);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
const responseChunk = super._createResponseChunk(chunk);
|
|
92
|
+
yield responseChunk;
|
|
93
|
+
void runManager?.handleLLMNewToken(chunk);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
await this._sleepIfRequested();
|
|
97
|
+
if (this.toolCalls.length > 0 && !this.addedToolCalls) {
|
|
98
|
+
this.addedToolCalls = true;
|
|
99
|
+
const toolCallChunks = this.toolCalls.map((toolCall) => {;
|
|
100
|
+
return {
|
|
101
|
+
name: toolCall.name,
|
|
102
|
+
args: JSON.stringify(toolCall.args),
|
|
103
|
+
id: toolCall.id,
|
|
104
|
+
type: 'tool_call_chunk',
|
|
105
|
+
} as ToolCallChunk;
|
|
106
|
+
});
|
|
107
|
+
const responseChunk = this._createResponseChunk('', toolCallChunks);
|
|
108
|
+
yield responseChunk;
|
|
109
|
+
void runManager?.handleLLMNewToken('');
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export function createFakeStreamingLLM({
|
|
115
|
+
responses,
|
|
116
|
+
sleep,
|
|
117
|
+
splitStrategy,
|
|
118
|
+
toolCalls,
|
|
119
|
+
} : {
|
|
120
|
+
responses: string[],
|
|
121
|
+
sleep?: number,
|
|
122
|
+
splitStrategy?: SplitStrategy,
|
|
123
|
+
toolCalls?: ToolCall[]
|
|
124
|
+
}
|
|
125
|
+
): FakeChatModel {
|
|
126
|
+
return new FakeChatModel({
|
|
127
|
+
sleep,
|
|
128
|
+
responses,
|
|
129
|
+
emitCustomEvent: true,
|
|
130
|
+
splitStrategy,
|
|
131
|
+
toolCalls,
|
|
132
|
+
});
|
|
133
|
+
}
|
|
@@ -1,160 +1,160 @@
|
|
|
1
|
-
import {
|
|
2
|
-
Tool as GenerativeAITool,
|
|
3
|
-
ToolConfig,
|
|
4
|
-
FunctionCallingMode,
|
|
5
|
-
FunctionDeclaration,
|
|
6
|
-
FunctionDeclarationsTool,
|
|
7
|
-
FunctionDeclarationSchema,
|
|
8
|
-
} from '@google/generative-ai';
|
|
9
|
-
import { ToolChoice } from '@langchain/core/language_models/chat_models';
|
|
10
|
-
import { StructuredToolInterface } from '@langchain/core/tools';
|
|
11
|
-
import { isLangChainTool } from '@langchain/core/utils/function_calling';
|
|
12
|
-
import {
|
|
13
|
-
isOpenAITool,
|
|
14
|
-
ToolDefinition,
|
|
15
|
-
} from '@langchain/core/language_models/base';
|
|
16
|
-
import { convertToGenerativeAITools } from './common';
|
|
17
|
-
import { GoogleGenerativeAIToolType } from '../types';
|
|
18
|
-
import { removeAdditionalProperties } from './zod_to_genai_parameters';
|
|
19
|
-
|
|
20
|
-
export function convertToolsToGenAI(
|
|
21
|
-
tools: GoogleGenerativeAIToolType[],
|
|
22
|
-
extra?: {
|
|
23
|
-
toolChoice?: ToolChoice;
|
|
24
|
-
allowedFunctionNames?: string[];
|
|
25
|
-
}
|
|
26
|
-
): {
|
|
27
|
-
tools: GenerativeAITool[];
|
|
28
|
-
toolConfig?: ToolConfig;
|
|
29
|
-
} {
|
|
30
|
-
// Extract function declaration processing to a separate function
|
|
31
|
-
const genAITools = processTools(tools);
|
|
32
|
-
|
|
33
|
-
// Simplify tool config creation
|
|
34
|
-
const toolConfig = createToolConfig(genAITools, extra);
|
|
35
|
-
|
|
36
|
-
return { tools: genAITools, toolConfig };
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
function processTools(tools: GoogleGenerativeAIToolType[]): GenerativeAITool[] {
|
|
40
|
-
let functionDeclarationTools: FunctionDeclaration[] = [];
|
|
41
|
-
const genAITools: GenerativeAITool[] = [];
|
|
42
|
-
|
|
43
|
-
tools.forEach((tool) => {
|
|
44
|
-
if (isLangChainTool(tool)) {
|
|
45
|
-
const [convertedTool] = convertToGenerativeAITools([
|
|
46
|
-
tool as StructuredToolInterface,
|
|
47
|
-
]);
|
|
48
|
-
if (convertedTool.functionDeclarations) {
|
|
49
|
-
functionDeclarationTools.push(...convertedTool.functionDeclarations);
|
|
50
|
-
}
|
|
51
|
-
} else if (isOpenAITool(tool)) {
|
|
52
|
-
const { functionDeclarations } = convertOpenAIToolToGenAI(tool);
|
|
53
|
-
if (functionDeclarations) {
|
|
54
|
-
functionDeclarationTools.push(...functionDeclarations);
|
|
55
|
-
} else {
|
|
56
|
-
throw new Error(
|
|
57
|
-
'Failed to convert OpenAI structured tool to GenerativeAI tool'
|
|
58
|
-
);
|
|
59
|
-
}
|
|
60
|
-
} else {
|
|
61
|
-
genAITools.push(tool as GenerativeAITool);
|
|
62
|
-
}
|
|
63
|
-
});
|
|
64
|
-
|
|
65
|
-
const genAIFunctionDeclaration = genAITools.find(
|
|
66
|
-
(t) => 'functionDeclarations' in t
|
|
67
|
-
);
|
|
68
|
-
if (genAIFunctionDeclaration) {
|
|
69
|
-
return genAITools.map((tool) => {
|
|
70
|
-
if (
|
|
71
|
-
functionDeclarationTools.length > 0 &&
|
|
72
|
-
'functionDeclarations' in tool
|
|
73
|
-
) {
|
|
74
|
-
const newTool = {
|
|
75
|
-
functionDeclarations: [
|
|
76
|
-
...(tool.functionDeclarations || []),
|
|
77
|
-
...functionDeclarationTools,
|
|
78
|
-
],
|
|
79
|
-
};
|
|
80
|
-
// Clear the functionDeclarationTools array so it is not passed again
|
|
81
|
-
functionDeclarationTools = [];
|
|
82
|
-
return newTool;
|
|
83
|
-
}
|
|
84
|
-
return tool;
|
|
85
|
-
});
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
return [
|
|
89
|
-
...genAITools,
|
|
90
|
-
...(functionDeclarationTools.length > 0
|
|
91
|
-
? [
|
|
92
|
-
{
|
|
93
|
-
functionDeclarations: functionDeclarationTools,
|
|
94
|
-
},
|
|
95
|
-
]
|
|
96
|
-
: []),
|
|
97
|
-
];
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
function convertOpenAIToolToGenAI(
|
|
101
|
-
tool: ToolDefinition
|
|
102
|
-
): FunctionDeclarationsTool {
|
|
103
|
-
return {
|
|
104
|
-
functionDeclarations: [
|
|
105
|
-
{
|
|
106
|
-
name: tool.function.name,
|
|
107
|
-
description: tool.function.description,
|
|
108
|
-
parameters: removeAdditionalProperties(
|
|
109
|
-
tool.function.parameters
|
|
110
|
-
) as FunctionDeclarationSchema,
|
|
111
|
-
},
|
|
112
|
-
],
|
|
113
|
-
};
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
function createToolConfig(
|
|
117
|
-
genAITools: GenerativeAITool[],
|
|
118
|
-
extra?: {
|
|
119
|
-
toolChoice?: ToolChoice;
|
|
120
|
-
allowedFunctionNames?: string[];
|
|
121
|
-
}
|
|
122
|
-
): ToolConfig | undefined {
|
|
123
|
-
if (!genAITools.length || !extra) return undefined;
|
|
124
|
-
|
|
125
|
-
const { toolChoice, allowedFunctionNames } = extra;
|
|
126
|
-
|
|
127
|
-
const modeMap: Record<string, FunctionCallingMode> = {
|
|
128
|
-
any: FunctionCallingMode.ANY,
|
|
129
|
-
auto: FunctionCallingMode.AUTO,
|
|
130
|
-
none: FunctionCallingMode.NONE,
|
|
131
|
-
};
|
|
132
|
-
|
|
133
|
-
if (
|
|
134
|
-
toolChoice != null &&
|
|
135
|
-
['any', 'auto', 'none'].includes(toolChoice as string)
|
|
136
|
-
) {
|
|
137
|
-
return {
|
|
138
|
-
functionCallingConfig: {
|
|
139
|
-
mode: modeMap[toolChoice as keyof typeof modeMap] ?? 'MODE_UNSPECIFIED',
|
|
140
|
-
allowedFunctionNames,
|
|
141
|
-
},
|
|
142
|
-
};
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
if (typeof toolChoice === 'string' || allowedFunctionNames) {
|
|
146
|
-
return {
|
|
147
|
-
functionCallingConfig: {
|
|
148
|
-
mode: FunctionCallingMode.ANY,
|
|
149
|
-
allowedFunctionNames: [
|
|
150
|
-
...(allowedFunctionNames ?? []),
|
|
151
|
-
...(toolChoice != null && typeof toolChoice === 'string'
|
|
152
|
-
? [toolChoice]
|
|
153
|
-
: []),
|
|
154
|
-
],
|
|
155
|
-
},
|
|
156
|
-
};
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
return undefined;
|
|
160
|
-
}
|
|
1
|
+
import {
|
|
2
|
+
Tool as GenerativeAITool,
|
|
3
|
+
ToolConfig,
|
|
4
|
+
FunctionCallingMode,
|
|
5
|
+
FunctionDeclaration,
|
|
6
|
+
FunctionDeclarationsTool,
|
|
7
|
+
FunctionDeclarationSchema,
|
|
8
|
+
} from '@google/generative-ai';
|
|
9
|
+
import { ToolChoice } from '@langchain/core/language_models/chat_models';
|
|
10
|
+
import { StructuredToolInterface } from '@langchain/core/tools';
|
|
11
|
+
import { isLangChainTool } from '@langchain/core/utils/function_calling';
|
|
12
|
+
import {
|
|
13
|
+
isOpenAITool,
|
|
14
|
+
ToolDefinition,
|
|
15
|
+
} from '@langchain/core/language_models/base';
|
|
16
|
+
import { convertToGenerativeAITools } from './common';
|
|
17
|
+
import { GoogleGenerativeAIToolType } from '../types';
|
|
18
|
+
import { removeAdditionalProperties } from './zod_to_genai_parameters';
|
|
19
|
+
|
|
20
|
+
export function convertToolsToGenAI(
|
|
21
|
+
tools: GoogleGenerativeAIToolType[],
|
|
22
|
+
extra?: {
|
|
23
|
+
toolChoice?: ToolChoice;
|
|
24
|
+
allowedFunctionNames?: string[];
|
|
25
|
+
}
|
|
26
|
+
): {
|
|
27
|
+
tools: GenerativeAITool[];
|
|
28
|
+
toolConfig?: ToolConfig;
|
|
29
|
+
} {
|
|
30
|
+
// Extract function declaration processing to a separate function
|
|
31
|
+
const genAITools = processTools(tools);
|
|
32
|
+
|
|
33
|
+
// Simplify tool config creation
|
|
34
|
+
const toolConfig = createToolConfig(genAITools, extra);
|
|
35
|
+
|
|
36
|
+
return { tools: genAITools, toolConfig };
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function processTools(tools: GoogleGenerativeAIToolType[]): GenerativeAITool[] {
|
|
40
|
+
let functionDeclarationTools: FunctionDeclaration[] = [];
|
|
41
|
+
const genAITools: GenerativeAITool[] = [];
|
|
42
|
+
|
|
43
|
+
tools.forEach((tool) => {
|
|
44
|
+
if (isLangChainTool(tool)) {
|
|
45
|
+
const [convertedTool] = convertToGenerativeAITools([
|
|
46
|
+
tool as StructuredToolInterface,
|
|
47
|
+
]);
|
|
48
|
+
if (convertedTool.functionDeclarations) {
|
|
49
|
+
functionDeclarationTools.push(...convertedTool.functionDeclarations);
|
|
50
|
+
}
|
|
51
|
+
} else if (isOpenAITool(tool)) {
|
|
52
|
+
const { functionDeclarations } = convertOpenAIToolToGenAI(tool);
|
|
53
|
+
if (functionDeclarations) {
|
|
54
|
+
functionDeclarationTools.push(...functionDeclarations);
|
|
55
|
+
} else {
|
|
56
|
+
throw new Error(
|
|
57
|
+
'Failed to convert OpenAI structured tool to GenerativeAI tool'
|
|
58
|
+
);
|
|
59
|
+
}
|
|
60
|
+
} else {
|
|
61
|
+
genAITools.push(tool as GenerativeAITool);
|
|
62
|
+
}
|
|
63
|
+
});
|
|
64
|
+
|
|
65
|
+
const genAIFunctionDeclaration = genAITools.find(
|
|
66
|
+
(t) => 'functionDeclarations' in t
|
|
67
|
+
);
|
|
68
|
+
if (genAIFunctionDeclaration) {
|
|
69
|
+
return genAITools.map((tool) => {
|
|
70
|
+
if (
|
|
71
|
+
functionDeclarationTools.length > 0 &&
|
|
72
|
+
'functionDeclarations' in tool
|
|
73
|
+
) {
|
|
74
|
+
const newTool = {
|
|
75
|
+
functionDeclarations: [
|
|
76
|
+
...(tool.functionDeclarations || []),
|
|
77
|
+
...functionDeclarationTools,
|
|
78
|
+
],
|
|
79
|
+
};
|
|
80
|
+
// Clear the functionDeclarationTools array so it is not passed again
|
|
81
|
+
functionDeclarationTools = [];
|
|
82
|
+
return newTool;
|
|
83
|
+
}
|
|
84
|
+
return tool;
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
return [
|
|
89
|
+
...genAITools,
|
|
90
|
+
...(functionDeclarationTools.length > 0
|
|
91
|
+
? [
|
|
92
|
+
{
|
|
93
|
+
functionDeclarations: functionDeclarationTools,
|
|
94
|
+
},
|
|
95
|
+
]
|
|
96
|
+
: []),
|
|
97
|
+
];
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function convertOpenAIToolToGenAI(
|
|
101
|
+
tool: ToolDefinition
|
|
102
|
+
): FunctionDeclarationsTool {
|
|
103
|
+
return {
|
|
104
|
+
functionDeclarations: [
|
|
105
|
+
{
|
|
106
|
+
name: tool.function.name,
|
|
107
|
+
description: tool.function.description,
|
|
108
|
+
parameters: removeAdditionalProperties(
|
|
109
|
+
tool.function.parameters
|
|
110
|
+
) as FunctionDeclarationSchema,
|
|
111
|
+
},
|
|
112
|
+
],
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
function createToolConfig(
|
|
117
|
+
genAITools: GenerativeAITool[],
|
|
118
|
+
extra?: {
|
|
119
|
+
toolChoice?: ToolChoice;
|
|
120
|
+
allowedFunctionNames?: string[];
|
|
121
|
+
}
|
|
122
|
+
): ToolConfig | undefined {
|
|
123
|
+
if (!genAITools.length || !extra) return undefined;
|
|
124
|
+
|
|
125
|
+
const { toolChoice, allowedFunctionNames } = extra;
|
|
126
|
+
|
|
127
|
+
const modeMap: Record<string, FunctionCallingMode> = {
|
|
128
|
+
any: FunctionCallingMode.ANY,
|
|
129
|
+
auto: FunctionCallingMode.AUTO,
|
|
130
|
+
none: FunctionCallingMode.NONE,
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
if (
|
|
134
|
+
toolChoice != null &&
|
|
135
|
+
['any', 'auto', 'none'].includes(toolChoice as string)
|
|
136
|
+
) {
|
|
137
|
+
return {
|
|
138
|
+
functionCallingConfig: {
|
|
139
|
+
mode: modeMap[toolChoice as keyof typeof modeMap] ?? 'MODE_UNSPECIFIED',
|
|
140
|
+
allowedFunctionNames,
|
|
141
|
+
},
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
if (typeof toolChoice === 'string' || allowedFunctionNames) {
|
|
146
|
+
return {
|
|
147
|
+
functionCallingConfig: {
|
|
148
|
+
mode: FunctionCallingMode.ANY,
|
|
149
|
+
allowedFunctionNames: [
|
|
150
|
+
...(allowedFunctionNames ?? []),
|
|
151
|
+
...(toolChoice != null && typeof toolChoice === 'string'
|
|
152
|
+
? [toolChoice]
|
|
153
|
+
: []),
|
|
154
|
+
],
|
|
155
|
+
},
|
|
156
|
+
};
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
return undefined;
|
|
160
|
+
}
|