@ace-sdk/cli
Version:
ACE CLI - Command-line tool for intelligent pattern learning and playbook management
36 lines • 962 B
TypeScript
/**
* Tune command - Adjust ACE thresholds and settings
*/
/**
* Tune command options - maps to actual server ConfigUpdateRequest fields
*/
interface TuneOptions {
scope?: 'project';
dedupSimilarityThreshold?: number;
dedupEnabled?: boolean;
constitutionThreshold?: number;
pruningThreshold?: number;
maxPlaybookTokens?: number;
tokenBudgetEnforcement?: boolean;
maxBatchSize?: number;
autoLearningEnabled?: boolean;
reflectorEnabled?: boolean;
curatorEnabled?: boolean;
searchTopK?: number;
}
/**
* Tune command - Interactive or flags mode
*/
export declare function tuneCommand(options?: TuneOptions): Promise<void>;
/**
* Show current effective configuration
*/
export declare function tuneShowCommand(): Promise<void>;
/**
* Reset configuration to defaults
*/
export declare function tuneResetCommand(options?: {
scope?: 'project';
}): Promise<void>;
export {};
//# sourceMappingURL=tune.d.ts.map