mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 21:03:19 +00:00
99 lines
3.3 KiB
TypeScript
99 lines
3.3 KiB
TypeScript
import { Alert } from "@mariozechner/mini-lit/dist/Alert.js";
|
|
import type { Message } from "@mariozechner/pi-ai";
|
|
import type { AgentMessage, MessageRenderer } from "@mariozechner/pi-web-ui";
|
|
import { defaultConvertToLlm, registerMessageRenderer } from "@mariozechner/pi-web-ui";
|
|
import { html } from "lit";
|
|
|
|
// ============================================================================
|
|
// 1. EXTEND AppMessage TYPE VIA DECLARATION MERGING
|
|
// ============================================================================
|
|
|
|
// Define custom message types
|
|
export interface SystemNotificationMessage {
|
|
role: "system-notification";
|
|
message: string;
|
|
variant: "default" | "destructive";
|
|
timestamp: string;
|
|
}
|
|
|
|
// Extend CustomAgentMessages interface via declaration merging
|
|
// This must target pi-agent-core where CustomAgentMessages is defined
|
|
declare module "@mariozechner/pi-agent-core" {
|
|
interface CustomAgentMessages {
|
|
"system-notification": SystemNotificationMessage;
|
|
}
|
|
}
|
|
|
|
// ============================================================================
|
|
// 2. CREATE CUSTOM RENDERER (TYPED TO SystemNotificationMessage)
|
|
// ============================================================================
|
|
|
|
const systemNotificationRenderer: MessageRenderer<SystemNotificationMessage> = {
|
|
render: (notification) => {
|
|
// notification is fully typed as SystemNotificationMessage!
|
|
return html`
|
|
<div class="px-4">
|
|
${Alert({
|
|
variant: notification.variant,
|
|
children: html`
|
|
<div class="flex flex-col gap-1">
|
|
<div>${notification.message}</div>
|
|
<div class="text-xs opacity-70">${new Date(notification.timestamp).toLocaleTimeString()}</div>
|
|
</div>
|
|
`,
|
|
})}
|
|
</div>
|
|
`;
|
|
},
|
|
};
|
|
|
|
// ============================================================================
|
|
// 3. REGISTER RENDERER
|
|
// ============================================================================
|
|
|
|
export function registerCustomMessageRenderers() {
|
|
registerMessageRenderer("system-notification", systemNotificationRenderer);
|
|
}
|
|
|
|
// ============================================================================
|
|
// 4. HELPER TO CREATE CUSTOM MESSAGES
|
|
// ============================================================================
|
|
|
|
export function createSystemNotification(
|
|
message: string,
|
|
variant: "default" | "destructive" = "default",
|
|
): SystemNotificationMessage {
|
|
return {
|
|
role: "system-notification",
|
|
message,
|
|
variant,
|
|
timestamp: new Date().toISOString(),
|
|
};
|
|
}
|
|
|
|
// ============================================================================
|
|
// 5. CUSTOM MESSAGE TRANSFORMER
|
|
// ============================================================================
|
|
|
|
/**
|
|
* Custom message transformer that extends defaultConvertToLlm.
|
|
* Handles system-notification messages by converting them to user messages.
|
|
*/
|
|
export function customConvertToLlm(messages: AgentMessage[]): Message[] {
|
|
// First, handle our custom system-notification type
|
|
const processed = messages.map((m): AgentMessage => {
|
|
if (m.role === "system-notification") {
|
|
const notification = m as SystemNotificationMessage;
|
|
// Convert to user message with <system> tags
|
|
return {
|
|
role: "user",
|
|
content: `<system>${notification.message}</system>`,
|
|
timestamp: Date.now(),
|
|
};
|
|
}
|
|
return m;
|
|
});
|
|
|
|
// Then use defaultConvertToLlm for standard handling
|
|
return defaultConvertToLlm(processed);
|
|
}
|