mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-25 06:53:03 +00:00
82 lines
2.3 KiB
TypeScript
82 lines
2.3 KiB
TypeScript
import { basenameFromAnyPath } from "../media/file-name.js";
|
|
import { normalizeOptionalString } from "../shared/string-coerce.js";
|
|
|
|
export type AgentGeneratedAttachment = {
|
|
type?: "image" | "audio" | "video" | "file";
|
|
path?: string;
|
|
url?: string;
|
|
mediaUrl?: string;
|
|
filePath?: string;
|
|
mimeType?: string;
|
|
name?: string;
|
|
};
|
|
|
|
export function generatedAttachmentReference(
|
|
attachment: AgentGeneratedAttachment,
|
|
): string | undefined {
|
|
return normalizeOptionalString(
|
|
attachment.path ?? attachment.url ?? attachment.mediaUrl ?? attachment.filePath,
|
|
);
|
|
}
|
|
|
|
export function mediaUrlsFromGeneratedAttachments(
|
|
attachments: readonly AgentGeneratedAttachment[] | undefined,
|
|
): string[] {
|
|
if (!attachments?.length) {
|
|
return [];
|
|
}
|
|
const urls: string[] = [];
|
|
const seen = new Set<string>();
|
|
for (const attachment of attachments) {
|
|
const url = generatedAttachmentReference(attachment);
|
|
if (!url || seen.has(url)) {
|
|
continue;
|
|
}
|
|
seen.add(url);
|
|
urls.push(url);
|
|
}
|
|
return urls;
|
|
}
|
|
|
|
export function nameFromGeneratedAttachment(
|
|
attachment: AgentGeneratedAttachment,
|
|
): string | undefined {
|
|
return (
|
|
normalizeOptionalString(attachment.name) ??
|
|
basenameFromAnyPath(generatedAttachmentReference(attachment) ?? "")
|
|
);
|
|
}
|
|
|
|
export function formatGeneratedAttachmentLines(
|
|
attachments: readonly AgentGeneratedAttachment[] | undefined,
|
|
): string[] {
|
|
if (!attachments?.length) {
|
|
return [];
|
|
}
|
|
const lines = ["Attachments:"];
|
|
for (const [index, attachment] of attachments.entries()) {
|
|
const parts = [`${index + 1}.`];
|
|
const type = normalizeOptionalString(attachment.type);
|
|
const name = nameFromGeneratedAttachment(attachment);
|
|
const mimeType = normalizeOptionalString(attachment.mimeType);
|
|
const path = normalizeOptionalString(attachment.path ?? attachment.filePath);
|
|
const url = normalizeOptionalString(attachment.url ?? attachment.mediaUrl);
|
|
if (type) {
|
|
parts.push(`type=${type}`);
|
|
}
|
|
if (name) {
|
|
parts.push(`name=${JSON.stringify(name)}`);
|
|
}
|
|
if (mimeType) {
|
|
parts.push(`mimeType=${mimeType}`);
|
|
}
|
|
if (path) {
|
|
parts.push(`path=${JSON.stringify(path)}`);
|
|
} else if (url) {
|
|
parts.push(`mediaUrl=${JSON.stringify(url)}`);
|
|
}
|
|
lines.push(parts.join(" "));
|
|
}
|
|
return lines;
|
|
}
|