Interface ThoughtModuleConfig

Core configuration for a ThoughtModule

interface ThoughtModuleConfig {
    name: string;
    description?: string;
    template: PromptTemplateConfig;
    strategies?: PromptStrategyConfig[];
    schema?: ZodType<any, ZodTypeDef, any>;
    maxRetries?: number;
    timeout?: number;
}

Properties

name: string
description?: string
strategies?: PromptStrategyConfig[]
schema?: ZodType<any, ZodTypeDef, any>
maxRetries?: number
timeout?: number