Interface ThoughtContext

Context passed between thought modules

interface ThoughtContext {
    input: any;
    memory: Record<string, any>;
    trace: ExecutionTrace[];
    metadata?: Record<string, any>;
}

Properties

input: any
memory: Record<string, any>
metadata?: Record<string, any>