export interface UpdateSystemPromptPayload {
    type: "update_system_prompt";
    /** New system prompt (cannot contain template variables) */
    system_prompt: string;
}
