@n8n/n8n-nodes-langchain
Version:
14 lines (13 loc) • 349 B
TypeScript
export type WanImagePlan = {
endpoint: string;
async: boolean;
input: 'messages' | 'prompt';
attachImages: 'content' | 'input' | null;
defaultSize: string | null;
n: number | null;
refs: {
max: number;
required: boolean;
} | null;
};
export declare function planWanImage(model: string): WanImagePlan;