import LLMCallBackToolMessage from "./LLMCallBackToolMessage";
import LLMMessageUsage from "./LLMMessageUsage";
export default interface LLMCallBackMessageChoice {
    index: number;
    content: string;
    reasoning_content?: string;
    thinking?: number;
    toolsCallDes?: string;
    tools?: LLMCallBackToolMessage[];
    usage?: LLMMessageUsage;
}
