/** * Default configuration values and factory. */ import type { ProjectConfig } from "./types.js"; export declare const CONFIG_FILE_NAME = ".vally.yaml"; export declare const MAX_WALK_LEVELS = 10; export declare const DEFAULT_SKILLS_DIR = "skills/"; export declare const DEFAULT_EVALS_DIR = "evals/"; export declare const DEFAULT_RESULTS_DIR = "vally-results/"; /** Default eval filename patterns when none are configured. */ export declare const DEFAULT_EVAL_FILENAMES: readonly string[]; /** * Create a fully-populated `ProjectConfig` with all defaults applied. * `dir` is set to empty string since no config file was loaded. */ export declare function createDefaultConfig(): ProjectConfig; //# sourceMappingURL=defaults.d.ts.map