You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: EVAL.md
+69Lines changed: 69 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
# EVAL - Quality Evaluation Framework for HUMAN-AI
2
2
3
+
> **NEW in v3.0:** ZeroGPT external validator integration. Run `scripts/run-benchmark.ps1` with a ZeroGPT API key to get independent AI detection scores.
4
+
3
5
> Load this prompt alongside SKILL.md output to score the humanization result.
4
6
> The evaluator is a separate prompt to avoid self-assessment bias.
5
7
@@ -166,3 +168,70 @@ HUMAN-AI OUTPUT:
166
168
```
167
169
168
170
The evaluator must have access to `shared/tone-profiles.md` and `shared/rhythm-tables.md` for accurate scoring.
171
+
172
+
---
173
+
174
+
## External Validation — ZeroGPT API
175
+
176
+
For **independent** validation (not LLM self-assessment), use ZeroGPT's external AI detection API.
177
+
178
+
### Prerequisites
179
+
180
+
1. ZeroGPT API key (register at [zerogpt.com](https://www.zerogpt.com) → Dashboard → API)
181
+
2. Set environment variable: `ZEROGPT_API_KEY="your-key"`
182
+
183
+
### Quick single-text check
184
+
185
+
```bash
186
+
# PowerShell
187
+
.\scripts\zerogpt-detect.ps1 -Text "Text to analyze"
188
+
189
+
# Bash
190
+
./scripts/zerogpt-detect.sh --text "Text to analyze"
Copy file name to clipboardExpand all lines: SKILL.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -367,6 +367,8 @@ If QUALITY SCORE < 75: identify the 2 lowest-scoring checks. Re-run ONLY the rel
367
367
368
368
After the single re-loop, output the final score regardless. Stop after 2 passes total.
369
369
370
+
**External validation:** For independent verification, run ZeroGPT detection via `scripts/zerogpt-detect.ps1` or `scripts/run-benchmark.ps1`. See `EVAL.md` — External Validation section for details. The self-evaluation score is an LLM self-assessment. ZeroGPT provides an independent external check.
0 commit comments