@just-every/task
Version:
Task - A Thoughtful Task Loop
23 lines • 522 B
JavaScript
/**
* Shared constants for the Task system
* @module constants
*/
/**
* Valid meta-cognition frequency values
*/
export const VALID_FREQUENCIES = [5, 10, 20, 40];
/**
* Valid thought delay values in seconds
*/
export const VALID_THOUGHT_DELAYS = [0, 2, 4, 8, 16, 32, 64, 128];
/**
* Default values
*/
export const DEFAULT_META_FREQUENCY = 10;
export const DEFAULT_THOUGHT_DELAY = 0;
export const DEFAULT_MODEL_SCORE = 50;
/**
* Limits
*/
export const MAX_MODEL_SCORE = 100;
//# sourceMappingURL=constants.js.map