Production sync - 2025-09-05

This commit is contained in:
2025-09-05 00:10:04 +00:00
parent 51f9ff56c1
commit 0949fc0919
4 changed files with 7 additions and 5 deletions

View File

@@ -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

View File

@@ -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:

View File

@@ -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"]

View File

@@ -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)'
)