@dawans/promptshield
Version:
Secure your LLM stack with enterprise-grade RulePacks for AI safety scanning
26 lines (25 loc) • 611 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.defaultScanConfig = void 0;
/**
* Default scan configuration
*/
exports.defaultScanConfig = {
rulepack: 'default',
outputFormat: 'markdown',
severity: ['low', 'medium', 'high', 'critical'],
category: [],
fields: ['prompt', 'response'],
scanEntireObject: false,
maxDepth: 4,
ndjsonMode: false,
streamingThreshold: 1000,
parallel: false,
batchSize: 10,
timeout: 300,
memoryWarningThreshold: 0.8,
quiet: false,
verbose: false,
debug: false,
strict: false,
};