diff --git a/docs/CURRENT_STATE.md b/docs/CURRENT_STATE.md index 7960dbb..7f0686b 100644 --- a/docs/CURRENT_STATE.md +++ b/docs/CURRENT_STATE.md @@ -1,5 +1,5 @@ # Current System State -Last Updated: Thu Sep 4 08:39:25 PM UTC 2025 +Last Updated: Fri Sep 5 12:10:03 AM UTC 2025 ## Service Status - Orchestrator: active @@ -8,5 +8,5 @@ Last Updated: Thu Sep 4 08:39:25 PM UTC 2025 - Ollama: active ## Metrics -- Responses: 520 -- Last Activity: pipeline_20250904_203335_01328637_response.json +- Responses: 526 +- Last Activity: pipeline_20250905_000835_26e90d76_response.json diff --git a/scripts/ai-processor/ai_processor.py b/scripts/ai-processor/ai_processor.py index bed96a0..295ce09 100644 --- a/scripts/ai-processor/ai_processor.py +++ b/scripts/ai-processor/ai_processor.py @@ -94,6 +94,7 @@ class AIProcessor: # ❌ NEVER use: destination-address any # ❌ NEVER use: application any # ❌ NEVER use: threshold values > 100 (use 10-50 range) +# NEVER use XML notation, YANG models, or namespace syntax # # MANDATORY PATTERNS YOU MUST USE: # ✅ ALWAYS define address-sets first: diff --git a/scripts/orchestrator/core/config.yaml.template b/scripts/orchestrator/core/config.yaml.template index f3dc96a..1c89c94 100644 --- a/scripts/orchestrator/core/config.yaml.template +++ b/scripts/orchestrator/core/config.yaml.template @@ -27,7 +27,7 @@ pr_creation: gitea: url: "https://git.salmutt.dev" - repo: "sal/srx-config" + repo: "netops/srx-config" token: "${GITEA_TOKEN}" branch: "main" labels: ["ai-generated", "auto-config", "pending-review"] diff --git a/scripts/orchestrator/core/run_pipeline.py b/scripts/orchestrator/core/run_pipeline.py index 82267ec..dc9c19e 100755 --- a/scripts/orchestrator/core/run_pipeline.py +++ b/scripts/orchestrator/core/run_pipeline.py @@ -207,6 +207,7 @@ def create_pr(): result = subprocess.run( ["python3", str(create_pr_script)], + input="y\n", capture_output=True, text=True ) @@ -274,7 +275,7 @@ def main(): parser.add_argument( '--timeout', type=int, - default=60, + default=120, help='Timeout waiting for AI response (default: 60s)' )