-
-
Notifications
You must be signed in to change notification settings - Fork 334
Expand file tree
/
Copy pathroute.ts
More file actions
392 lines (350 loc) · 11.5 KB
/
route.ts
File metadata and controls
392 lines (350 loc) · 11.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
import {
convertToModelMessages,
createUIMessageStream,
createUIMessageStreamResponse,
smoothStream,
stepCountIs,
streamText,
Tool,
UIMessage,
} from "ai";
import { customModelProvider, isToolCallUnsupportedModel } from "lib/ai/models";
import { mcpClientsManager } from "lib/ai/mcp/mcp-manager";
import { agentRepository, chatRepository } from "lib/db/repository";
import globalLogger from "logger";
import {
buildMcpServerCustomizationsSystemPrompt,
buildUserSystemPrompt,
buildToolCallUnsupportedModelSystemPrompt,
} from "lib/ai/prompts";
import {
chatApiSchemaRequestBodySchema,
ChatMention,
ChatMetadata,
} from "app-types/chat";
import { errorIf, safe } from "ts-safe";
import {
excludeToolExecution,
handleError,
manualToolExecuteByLastMessage,
mergeSystemPrompt,
extractInProgressToolPart,
filterMcpServerCustomizations,
loadMcpTools,
loadWorkFlowTools,
loadAppDefaultTools,
convertToSavePart,
} from "./shared.chat";
import {
rememberAgentAction,
rememberMcpServerCustomizationsAction,
} from "./actions";
import { getSession } from "auth/server";
import { colorize } from "consola/utils";
import { generateUUID } from "lib/utils";
import { nanoBananaTool, openaiImageTool } from "lib/ai/tools/image";
import { ImageToolName } from "lib/ai/tools";
import { buildCsvIngestionPreviewParts } from "@/lib/ai/ingest/csv-ingest";
import { serverFileStorage } from "lib/file-storage";
const logger = globalLogger.withDefaults({
message: colorize("blackBright", `Chat API: `),
});
export async function POST(request: Request) {
try {
const json = await request.json();
const session = await getSession();
if (!session?.user.id) {
return new Response("Unauthorized", { status: 401 });
}
const {
id,
message,
chatModel,
toolChoice,
allowedAppDefaultToolkit,
allowedMcpServers,
imageTool,
mentions = [],
attachments = [],
} = chatApiSchemaRequestBodySchema.parse(json);
const model = customModelProvider.getModel(chatModel);
let thread = await chatRepository.selectThreadDetails(id);
if (!thread) {
logger.info(`create chat thread: ${id}`);
const newThread = await chatRepository.insertThread({
id,
title: "",
userId: session.user.id,
});
thread = await chatRepository.selectThreadDetails(newThread.id);
}
if (thread!.userId !== session.user.id) {
return new Response("Forbidden", { status: 403 });
}
const messages: UIMessage[] = (thread?.messages ?? []).map((m) => {
return {
id: m.id,
role: m.role,
parts: m.parts,
metadata: m.metadata,
};
});
if (messages.at(-1)?.id == message.id) {
messages.pop();
}
const ingestionPreviewParts = await buildCsvIngestionPreviewParts(
attachments,
(key) => serverFileStorage.download(key),
);
if (ingestionPreviewParts.length) {
const baseParts = [...message.parts];
let insertionIndex = -1;
for (let i = baseParts.length - 1; i >= 0; i -= 1) {
if (baseParts[i]?.type === "text") {
insertionIndex = i;
break;
}
}
if (insertionIndex !== -1) {
baseParts.splice(insertionIndex, 0, ...ingestionPreviewParts);
message.parts = baseParts;
} else {
message.parts = [...baseParts, ...ingestionPreviewParts];
}
}
if (attachments.length) {
const firstTextIndex = message.parts.findIndex(
(part: any) => part?.type === "text",
);
const attachmentParts: any[] = [];
attachments.forEach((attachment) => {
const exists = message.parts.some(
(part: any) =>
part?.type === attachment.type && part?.url === attachment.url,
);
if (exists) return;
if (attachment.type === "file") {
attachmentParts.push({
type: "file",
url: attachment.url,
mediaType: attachment.mediaType,
filename: attachment.filename,
});
} else if (attachment.type === "source-url") {
attachmentParts.push({
type: "source-url",
url: attachment.url,
mediaType: attachment.mediaType,
title: attachment.filename,
});
}
});
if (attachmentParts.length) {
if (firstTextIndex >= 0) {
message.parts = [
...message.parts.slice(0, firstTextIndex),
...attachmentParts,
...message.parts.slice(firstTextIndex),
];
} else {
message.parts = [...message.parts, ...attachmentParts];
}
}
}
messages.push(message);
const supportToolCall = !isToolCallUnsupportedModel(model);
const agentId = (
mentions.find((m) => m.type === "agent") as Extract<
ChatMention,
{ type: "agent" }
>
)?.agentId;
const agent = await rememberAgentAction(agentId, session.user.id);
if (agent?.instructions?.mentions) {
mentions.push(...agent.instructions.mentions);
}
const useImageTool = Boolean(imageTool?.model);
const isToolCallAllowed =
supportToolCall &&
(toolChoice != "none" || mentions.length > 0) &&
!useImageTool;
const metadata: ChatMetadata = {
agentId: agent?.id,
toolChoice: toolChoice,
toolCount: 0,
chatModel: chatModel,
};
const stream = createUIMessageStream({
execute: async ({ writer: dataStream }) => {
const mcpClients = await mcpClientsManager.getClients();
const mcpTools = await mcpClientsManager.tools();
logger.info(
`mcp-server count: ${mcpClients.length}, mcp-tools count :${Object.keys(mcpTools).length}`,
);
const MCP_TOOLS = await safe()
.map(errorIf(() => !isToolCallAllowed && "Not allowed"))
.map(() =>
loadMcpTools({
mentions,
allowedMcpServers,
}),
)
.orElse({});
const WORKFLOW_TOOLS = await safe()
.map(errorIf(() => !isToolCallAllowed && "Not allowed"))
.map(() =>
loadWorkFlowTools({
mentions,
dataStream,
}),
)
.orElse({});
const APP_DEFAULT_TOOLS = await safe()
.map(errorIf(() => !isToolCallAllowed && "Not allowed"))
.map(() =>
loadAppDefaultTools({
mentions,
allowedAppDefaultToolkit,
}),
)
.orElse({});
const inProgressToolParts = extractInProgressToolPart(message);
if (inProgressToolParts.length) {
await Promise.all(
inProgressToolParts.map(async (part) => {
const output = await manualToolExecuteByLastMessage(
part,
{ ...MCP_TOOLS, ...WORKFLOW_TOOLS, ...APP_DEFAULT_TOOLS },
request.signal,
);
part.output = output;
dataStream.write({
type: "tool-output-available",
toolCallId: part.toolCallId,
output,
});
}),
);
}
const userPreferences = thread?.userPreferences || undefined;
const mcpServerCustomizations = await safe()
.map(() => {
if (Object.keys(MCP_TOOLS ?? {}).length === 0)
throw new Error("No tools found");
return rememberMcpServerCustomizationsAction(session.user.id);
})
.map((v) => filterMcpServerCustomizations(MCP_TOOLS!, v))
.orElse({});
const systemPrompt = mergeSystemPrompt(
buildUserSystemPrompt(session.user, userPreferences, agent),
buildMcpServerCustomizationsSystemPrompt(mcpServerCustomizations),
!supportToolCall && buildToolCallUnsupportedModelSystemPrompt,
);
const IMAGE_TOOL: Record<string, Tool> = useImageTool
? {
[ImageToolName]:
imageTool?.model === "google"
? nanoBananaTool
: openaiImageTool,
}
: {};
const vercelAITooles = safe({
...MCP_TOOLS,
...WORKFLOW_TOOLS,
...IMAGE_TOOL,
})
.map((t) => {
const bindingTools =
toolChoice === "manual" ||
(message.metadata as ChatMetadata)?.toolChoice === "manual"
? excludeToolExecution(t)
: t;
return {
...bindingTools,
...APP_DEFAULT_TOOLS, // APP_DEFAULT_TOOLS Not Supported Manual
...IMAGE_TOOL,
};
})
.unwrap();
metadata.toolCount = Object.keys(vercelAITooles).length;
const allowedMcpTools = Object.values(allowedMcpServers ?? {})
.map((t) => t.tools)
.flat();
logger.info(
`${agent ? `agent: ${agent.name}, ` : ""}tool mode: ${toolChoice}, mentions: ${mentions.length}`,
);
logger.info(
`allowedMcpTools: ${allowedMcpTools.length ?? 0}, allowedAppDefaultToolkit: ${allowedAppDefaultToolkit?.length ?? 0}`,
);
if (useImageTool) {
logger.info(`binding tool count Image: ${imageTool?.model}`);
} else {
logger.info(
`binding tool count APP_DEFAULT: ${Object.keys(APP_DEFAULT_TOOLS ?? {}).length}, MCP: ${Object.keys(MCP_TOOLS ?? {}).length}, Workflow: ${Object.keys(WORKFLOW_TOOLS ?? {}).length}`,
);
}
logger.info(`model: ${chatModel?.provider}/${chatModel?.model}`);
const result = streamText({
model,
system: systemPrompt,
messages: convertToModelMessages(messages),
experimental_transform: smoothStream({ chunking: "word" }),
maxRetries: 2,
tools: vercelAITooles,
stopWhen: stepCountIs(10),
toolChoice: "auto",
abortSignal: request.signal,
});
result.consumeStream();
dataStream.merge(
result.toUIMessageStream({
messageMetadata: ({ part }) => {
if (part.type == "finish") {
metadata.usage = part.totalUsage;
return metadata;
}
},
}),
);
},
generateId: generateUUID,
onFinish: async ({ responseMessage }) => {
if (responseMessage.id == message.id) {
await chatRepository.upsertMessage({
threadId: thread!.id,
...responseMessage,
parts: responseMessage.parts.map(convertToSavePart),
metadata,
});
} else {
await chatRepository.upsertMessage({
threadId: thread!.id,
role: message.role,
parts: message.parts.map(convertToSavePart),
id: message.id,
});
await chatRepository.upsertMessage({
threadId: thread!.id,
role: responseMessage.role,
id: responseMessage.id,
parts: responseMessage.parts.map(convertToSavePart),
metadata,
});
}
if (agent) {
agentRepository.updateAgent(agent.id, session.user.id, {
updatedAt: new Date(),
} as any);
}
},
onError: handleError,
originalMessages: messages,
});
return createUIMessageStreamResponse({
stream,
});
} catch (error: any) {
logger.error(error);
return Response.json({ message: error.message }, { status: 500 });
}
}