https://github.com/lynote-ai/humanize-text
Free open-source AI text humanizer to convert AI-generated content into undetectable, human-like writing. Bypass Turnitin, GPTZero, and all major AI detectors. No sign-up required. Try our unlimited free online tool
https://github.com/lynote-ai/humanize-text
ai-detection ai-humanize ai-humanizer ai-tools dify gptzero-bypass humanize-ai humanize-ai-text humanize-text humanizer n8n openclaw
Last synced: 8 days ago
JSON representation
Free open-source AI text humanizer to convert AI-generated content into undetectable, human-like writing. Bypass Turnitin, GPTZero, and all major AI detectors. No sign-up required. Try our unlimited free online tool
- Host: GitHub
- URL: https://github.com/lynote-ai/humanize-text
- Owner: lynote-ai
- License: mit
- Created: 2026-05-18T10:12:15.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-06-08T04:04:54.000Z (19 days ago)
- Last Synced: 2026-06-08T06:08:34.624Z (19 days ago)
- Topics: ai-detection, ai-humanize, ai-humanizer, ai-tools, dify, gptzero-bypass, humanize-ai, humanize-ai-text, humanize-text, humanizer, n8n, openclaw
- Language: Python
- Homepage: https://lynote.ai/ai-humanizer
- Size: 5.09 MB
- Stars: 1,081
- Watchers: 28
- Forks: 60
- Open Issues: 12
-
Metadata Files:
- Readme: README-zh.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ai-tools - Lynote AI Humanize Text - Open-source AI text humanization toolkit for rewriting AI drafts into natural, human-like writing. Full free web version: https://lynote.ai/ai-humanizer (🆕 Additional AI and Productivity Tools / Multi-Agent / Orchestration Frameworks)
README
English | 中文
---
## Humanize-Text 是什么?
一个 AI 文本拟人化工具。本仓库经历了两个阶段:
- **v1.0** — 整理了 **4 种拟人化方法论**作为参考实现(翻译链、多轮 LLM 改写、检测引导反馈环、混合引擎翻译)。详见 [docs/techniques.md](docs/techniques.md)。
- **v1.5(当前版本)** — 新增 **Standard 管线**: 将 Method 1(翻译链)+ Method 2(LLM 改写)整合为固定的 5 步生产级链路,这是我们实际在跑、推荐使用的方案。
### v1.5.1 — Standard 管线(推荐)
Standard 管线在保留原文风格的同时,通过 4 步链路处理文本: 两步 LLM 拟人化改写 + 两步跨引擎翻译。
```
输入 (EN) → 中文 (LLM) → 日语 (LLM) → 芬兰语 (谷歌翻译) → 英语 (小牛翻译)
```
LLM 步骤默认使用 **DeepSeek**,也可通过 `config.toml` 的 `[llm]` 配置切换为 **[OpenRouter](https://openrouter.ai)** 或其他 OpenAI 兼容 API。详见 [配置指南](docs/configuration.md)。
**[`examples/showcase/`](examples/showcase/) 提供 5 个真实样本的完整中间步骤输出与 AI 检测结果。**
**特点:**
- 所有方案中原文风格保留度最好
- 处理速度快
- 关键信息保留率 100%(50 组文本对验证)
- 专家综合评分:9.1/10
> 4 个原始方法论保留在 `src/methodologies/` 中作为**参考实现**,可用于研究与二次开发。Standard 管线 (`src/standard/pipeline.py`) 是推荐的生产路径。
> **想要更高绕过率 + 全方案融合?**
> [Lynote.ai](https://lynote.ai) 将 Standard + Advanced + Focus 三个管线融合为一个智能系统 — 自动为每段文本选择最优方案。
>
> **[免费试用 Lynote.ai →](https://lynote.ai)**
---
## 工作原理
### 逐步管线
| 步骤 | 引擎 | 转换方向 | 目的 |
|------|------|---------|------|
| 1 | LLM (温度 1.3) | 输入 → 中文(中文改写) | LLM 拟人化改写 + 语言转换 |
| 2 | LLM (温度 1.3) | 中文 → 日语(日语改写) | 二次 LLM 拟人化,携带步骤 1 历史 |
| 3 | 谷歌翻译 | 日语 → 芬兰语(一轮翻译) | 第一次翻译,远距离语种结构扰动 |
| 4 | 小牛翻译 | 芬兰语 → 英语(二轮翻译) | 第二次翻译,跨引擎重构 |
### 为什么这条链路有效
1. **步骤 1–2(LLM 改写):** 可配置的 LLM 提供商(默认 DeepSeek,可选 OpenRouter)在温度 1.3 下边翻译边改写,通过创造性变化打破 AI 统计指纹。步骤 2 携带步骤 1 作为对话历史,保证连贯的拟人化效果。
2. **步骤 3–4(多引擎翻译):** 两个不同 NMT 引擎(谷歌 → 小牛)引入叠加的结构变化,任何单引擎指纹都无法存活。
3. **远距离语种:** 中文 → 日语 → 芬兰语,每一跳都最大化语言距离,确保在重构回英语前完成彻底的结构重组。
---
## 真实样例展示 — 5 组完整中间步骤输出
我们在 5 段真实输入文本上端到端运行了管线,并保存了每一步的中间输出。最终 5 段输出全部被 AI 检测器判定为 `human`。
| # | 主题 | 检测结果 | 置信度 |
|---|------|---------|--------|
| [01](examples/showcase/example_01.md) | 量子计算 | `human` | 0.9997 |
| [02](examples/showcase/example_02.md) | 量子准备度战略 | `human` | 0.9982 |
| [03](examples/showcase/example_03.md) | 可持续供应链 | `human` | 0.7810 |
| [04](examples/showcase/example_04.md) | 财商教育 | `human` | 0.9924 |
| [05](examples/showcase/example_05.md) | 学术同行评议 | `human` | 0.7218 |
每个样例展示: 原始输入 → 步骤 1(中文改写)→ 步骤 2(日语改写)→ 步骤 3(一轮翻译)→ 步骤 4(二轮翻译,最终输出)。完整轨迹见 [`examples/showcase/`](examples/showcase/)。
---
## Lynote.ai — 超越 Standard
上面的 Standard 管线是**三个层级之一**,各有不同的取舍:
| 层级 | 风格保留度 | 速度 | 方案 |
|------|-----------|------|------|
| **Standard**(本仓库) | 最好 | 快 | 翻译链 |
| **Advanced** | 良好 | 中等 | 翻译链 + LLM 多轮重写 |
| **Focus** | 一般 | 较慢 | 翻译链 + 检测引导反馈循环 |
**[Lynote.ai](https://lynote.ai)** 融合全部三个层级,自动为每段文本选择最优方案:
- **智能层级选择** — 分析文本,逐段选择 Standard、Advanced 或 Focus
- **自适应组合** — 可在同一文档内混合使用多个层级
- **支持 10+ 种语言** — 英语、中文、日语、韩语、西班牙语、法语、德语等
- **粘贴即用** — 无需部署,无需 API Key,无需配置
---
## 快速开始
| 方式 | 适合人群 | 操作 |
|------|---------|------|
| [Lynote.ai](https://lynote.ai) | 所有人 — 全层级,零部署 | 访问 [lynote.ai](https://lynote.ai) |
| n8n 工作流 | 无代码自动化用户 | 导入 [`n8n/humanize_standard.json`](n8n/humanize_standard.json) |
| Python 脚本 | 开发者 | 见下方 |
### Python
```bash
git clone https://github.com/lynote-ai/humanize-text.git
cd humanize-text
pip install -r requirements.txt
cp config/config.example.toml config/config.toml
# 在 config.toml 中填入 API 密钥(见下方示例)
python -m src.standard.pipeline --input "你的 AI 生成文本"
```
**DeepSeek(默认):**
```toml
[api_keys]
deepseek_api_key = "sk-..."
niutrans_api_key = "your-key"
[llm]
provider = "deepseek"
```
**OpenRouter:**
```toml
[api_keys]
openrouter_api_key = "sk-or-..."
niutrans_api_key = "your-key"
[llm]
provider = "openrouter"
model = "deepseek/deepseek-chat"
```
可通过 `[llm].base_url` 或环境变量 `LLM_BASE_URL` / `LLM_API_KEY` 覆盖 API 端点。完整说明见 [docs/configuration.md](docs/configuration.md)。
### n8n 工作流
1. 将 `n8n/humanize_standard.json` 导入你的 n8n 实例
2. 在 HTTP Request 节点中配置 LLM API Key 和 URL(默认为 DeepSeek;可改为 OpenRouter 的 `https://openrouter.ai/api/v1/chat/completions`)
3. 运行 — 输入文本,输出拟人化结果
---
## 质量指标
在 50 组文本对上经专家评估:
| 维度 | 评分(满分 10 分) |
|------|-------------------|
| 信息完整性 | 10.0 |
| 语言流畅度 | 9.0 |
| 风格适应性 | 8.8 |
| 可读性 | 9.2 |
| 创意与感染力 | 8.5 |
| **综合评分** | **9.1** |
- **关键信息保留率:** 100%(50/50 组)
- 所有文本均完整保留原文关键信息,无重大遗漏或意义扭曲
---
## 文档
- [管线技术详解](docs/pipeline.md)
- [配置指南](docs/configuration.md)
- [n8n 工作流指南](docs/n8n-guide.md)
- [常见问题](docs/faq.md)
---
## 开源协议
MIT License。详情见 [LICENSE](LICENSE)。
---
## 相关链接
- [Lynote.ai — AI 拟人化平台](https://lynote.ai)
- [报告 Bug](https://github.com/lynote-ai/humanize-text/issues)
### 推荐项目
- [MoneyPrinterTurbo](https://github.com/harry0703/MoneyPrinterTurbo) — AI 短视频生成器
- [AiToEarn](https://github.com/yikart/AiToEarn) — AI 内容发布工具
---
## Star 趋势
---
如果这个项目对你有帮助,请给一个 ⭐!