File size: 827 Bytes
8f716c5 | 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 | import { type ClassValue, clsx } from "clsx";
export function cn(...inputs: ClassValue[]) {
return clsx(inputs);
}
export function formatTimestamp(date: Date = new Date()): string {
return date.toLocaleTimeString([], {
hour: "2-digit",
minute: "2-digit",
});
}
export function exportConversation(messages: any[]): void {
const content = messages
.map(
(m) =>
`[${m.timestamp}] ${m.role.toUpperCase()}: ${m.content}\n`
)
.join("\n");
const blob = new Blob([content], { type: "text/plain" });
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = `medos-conversation-${new Date().toISOString().split("T")[0]}.txt`;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
|