export type LLMConfig = {
    apiKey: string;
    baseURL: string;
    model: string;
};
export type ToolCall = {
    tool: string;
    arguments?: Record<string, any>;
    moduleId: string;
};
export type ResourceCall = {
    uri: string;
    moduleId: string;
};
