Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
"start": "node dist/cli/index.js",
"test": "vitest",
"test:run": "vitest run",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint src/**/*.ts",
"lint:fix": "ESLINT_USE_FLAT_CONFIG=false eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,13 +356,15 @@ graph:
title: 'Process AI Analysis Results'
description: 'Parse and integrate AI moderation results with rule-based analysis'
command: '/bin/bash'
environment:
AI_RESPONSE: "$(get_workflow_var 'LLM_CONTENT' '')"
args:
- '-c'
- |
set -euo pipefail
echo "🤖 Processing AI analysis results..."

AI_RESPONSE="{{llm_content}}"
AI_RESPONSE="${AI_RESPONSE:-}"
ANALYSIS_DIR="/tmp/content_moderation/analysis"

echo "📋 AI Analysis Response:"
Expand Down
Loading