Spaces:
Running
Running
File size: 1,270 Bytes
1bb9a73 d1abcca 1bb9a73 d1abcca 1bb9a73 d1abcca | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | ---
title: AI Humanizer
emoji: "\U0001F9E0"
colorFrom: pink
colorTo: yellow
sdk: gradio
sdk_version: 5.12.0
app_file: app.py
pinned: false
---
# AI Text Humanizer
**3-Agent Sequential Pipeline** for transforming AI-generated text into
natural, human-sounding writing.
## Architecture
```
Input Text -> [Semantic Analyzer] -> [Draft Generator] -> [Humanizer] -> [Verifier] -> Output
^ |
| (loop if AI) |
+----------------+
```
## Models Used (all free HF Inference)
| Agent | Model |
|-------|-------|
| Semantic Analyzer | mistralai/Mistral-7B-Instruct-v0.3 |
| Draft Generator | mistralai/Mistral-7B-Instruct-v0.3 |
| Humanizer | HuggingFaceH4/zephyr-7b-beta |
| Verifier | roberta-base-openai-detector |
## How It Works
1. **Agent 1** extracts topic, tone, audience, and arguments (read-only analysis)
2. **Agent 2** rewrites text naturally while preserving 100% of facts
3. **Agent 3** injects human imperfections: contractions, fillers, hedging, varied sentence lengths
4. **Verifier** checks with AI detector -- loops back to Agent 3 if flagged (max 3x)
|