UNPKG

@just-every/task

Version:

Task - A Thoughtful Task Loop

24 lines 737 B
/** * Shared constants for the Task system */ /** * Valid meta-cognition frequency values */ export declare const VALID_FREQUENCIES: readonly ["5", "10", "20", "40"]; export type MetaFrequency = typeof VALID_FREQUENCIES[number]; /** * Valid thought delay values in seconds */ export declare const VALID_THOUGHT_DELAYS: readonly ["0", "2", "4", "8", "16", "32", "64", "128"]; export type ThoughtDelay = typeof VALID_THOUGHT_DELAYS[number]; /** * Default values */ export declare const DEFAULT_META_FREQUENCY: MetaFrequency; export declare const DEFAULT_THOUGHT_DELAY: ThoughtDelay; export declare const DEFAULT_MODEL_SCORE = 50; /** * Limits */ export declare const MAX_MODEL_SCORE = 100; //# sourceMappingURL=constants.d.ts.map