export default interface LLMMessage {
    role: "system" | "assistant" | "user";
    content: string;
    reasoning_content?: string;
}
