Expand description
interface Message {
content: string;
role: "system" | "user" | "assistant" | "tool";
toolCallId?: string;
}interface Message {
content: string;
role: "system" | "user" | "assistant" | "tool";
toolCallId?: string;
}
A single conversation message, normalised across all supported formats.