export default interface LLMCallBackToolMessage {
    id: string;
    index: number;
    name: string;
    arguments?: any;
    content?: string;
}
