Interface PromptStrategyConfig

Strategy configuration for advanced reasoning

interface PromptStrategyConfig {
    type: "chain-of-thought" | "reflection" | "multi-perspective" | "retry" | "validation";
    config?: Record<string, any>;
}

Properties

Properties

type: "chain-of-thought" | "reflection" | "multi-perspective" | "retry" | "validation"
config?: Record<string, any>