From 8e7f57c3d9337a93ac19011cb9372078369690a2 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Fri, 30 Jan 2026 18:01:25 +0000 Subject: [PATCH] Add core files: README, LICENSE, requirements, setup, config --- config.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 config.yaml diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..1146fd1 --- /dev/null +++ b/config.yaml @@ -0,0 +1,17 @@ +llm: + endpoint: "http://localhost:11434" + model: "llama3" + temperature: 0.7 + timeout: 30 + +audit: + max_depth: 3 + severity_levels: + - critical + - warning + - info + +fix: + create_backup: true + backup_dir: ".config_auditor_backup" + dry_run_default: false