-
Notifications
You must be signed in to change notification settings - Fork 7.5k
Expand file tree
/
Copy pathinline-file-parts-as-base64.util.ts
More file actions
55 lines (47 loc) · 1.36 KB
/
Copy pathinline-file-parts-as-base64.util.ts
File metadata and controls
55 lines (47 loc) · 1.36 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
import { type UIMessage } from 'ai';
import { isExtendedFileUIPart } from 'twenty-shared/ai';
import { isDefined } from 'twenty-shared/utils';
type FileContent = {
buffer: Buffer;
mimeType: string;
};
type LoadFileContent = (fileId: string) => Promise<FileContent | null>;
export const inlineFilePartsAsBase64 = async (
messages: UIMessage[],
loadFileContent: LoadFileContent,
): Promise<UIMessage[]> => {
return Promise.all(
messages.map(async (message) => {
const inlinedParts = await Promise.all(
message.parts.map(async (part) => {
if (!isExtendedFileUIPart(part)) {
return part;
}
if (part.url.startsWith('data:')) {
return part;
}
const content = await loadFileContent(part.fileId);
if (!isDefined(content)) {
return {
type: 'text' as const,
text: `[Attachment${
part.filename ? ` "${part.filename}"` : ''
} could not be loaded and is unavailable.]`,
};
}
return {
...part,
mediaType: content.mimeType,
url: `data:${content.mimeType};base64,${content.buffer.toString(
'base64',
)}`,
};
}),
);
return {
...message,
parts: inlinedParts,
};
}),
);
};