Star 历史趋势
数据来源: GitHub API · 生成自 Stargazers.cn
README.md

Lynote Humanize Text

An open-source pipeline for rewriting AI-generated text into natural human prose

Product Hunt

Stars License Python Last commit Open in HF Spaces

Website ·Product Hunt · Try the detector · Discord · X

Humanize-Text

English | 中文


Most humanizers are a black box with marketing claims attached. This one is open source, so you can read what it actually does.

The interesting part isn't the LLM rewriting — everyone does that. It's the translation chain.

How it works

Step-by-Step Pipeline

StepEngineFrom → ToPurpose
1LLM (temp 1.3)Input → Chinese (Chinese Rewriting)LLM humanization rewrite + language shift
2LLM (temp 1.3)Chinese → Japanese (Japanese Rewriting)Second LLM humanization, carries Step 1 as history
3Google TranslateJapanese → Finnish (First Round of Translation)First translation hop — distant language structural disruption
4NiutransFinnish → English (Second-Round Translation)Second translation hop — cross-engine reconstruction

Why This Chain Works

  1. Steps 1–2 (LLM Rewrite): Configurable LLM provider (DeepSeek default, OpenRouter optional) at temperature 1.3 rewrites while translating, breaking AI statistical fingerprints with creative variation. Step 2 carries Step 1 as conversation history for coherent humanization.
  2. Steps 3–4 (Multi-Engine Translation): Two different NMT engines (Google → Niutrans) introduce compounding structural changes. No single-engine fingerprint survives.
  3. Distant Languages: Chinese → Japanese → Finnish maximizes linguistic distance at each hop, ensuring thorough restructuring before reconstruction to English.

Quick start

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   # add your API key
python -m src.standard.pipeline --input draft.txt

Tiers

TierWhat it doesBest for
standard2 LLM rewrites + 2 MT hopsThe default balance
advanced+ multi-round LLM rewritingDeeper restructuring
focus+ detection-guided feedback loopMaximum restructuring

Note on intended use. This toolkit is for improving the readability and natural cadence of AI-assisted drafts. If you are writing in an academic setting, follow your institution's policies on AI use and disclosure.

Important: Detector scores are probabilistic. This project does not guarantee that rewritten text will be classified as human, and it should not be used to misrepresent authorship or evade institutional policies.

Where this repo fits. The pipeline here is our team's open exploration from early 2026 — the most effective approach we'd found at the time, released so anyone can read it, run it, and build on it. We've since moved well beyond it: Lynote.ai now runs proprietary detect + humanize models we trained ourselves, using adversarial training on curated, high-quality datasets.

Against this repo's open-source chain, Lynote.ai's current humanizer raises the detector-bypass rate by ~30% and rates ~50% higher on output quality — both are relative gains over this chain. The detection side draws on the latest research into what actually separates human from AI writing — not surface style, but discourse-level narrative structure (e.g. the StoryScope study, UMD & Google DeepMind, COLM 2026). Style-only rewriting no longer tells the whole story — which is exactly why this open chain has a ceiling.

This repo stays a faithful, runnable reference. For the current best results, try Lynote.ai.


Lynote.ai — Beyond Standard

Humanize-Text

The Standard pipeline above is one of three tiers available. Each has different trade-offs:

TierStyle PreservationSpeedApproach
Standard (this repo)BestFastTranslation chain
AdvancedGoodMediumTranslation chain + LLM multi-round rewriting
FocusModerateSlowerTranslation chain + Detection-guided feedback loop

Lynote.ai combines all three tiers and automatically selects the optimal approach for each text passage:

  • Intelligent Tier Selection — Analyzes text and picks Standard, Advanced, or Focus per-passage
  • Adaptive Combination — Can mix tiers within a single document
  • 10+ Languages — English, Chinese, Japanese, Korean, Spanish, French, German, and more
  • Paste & Go — No setup, no API keys, no configuration

Try Lynote.ai Free

Three ways to run it

MethodWho It's ForHow
Lynote.aiEveryone — all tiers, zero setupVisit lynote.ai
n8n WorkflowNo-code automation usersImport n8n/humanize_standard.json
Python ScriptDevelopersSee below

Python

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
# Fill in your API keys in config.toml (see examples below)
python -m src.standard.pipeline --input "Your AI-generated text here"

DeepSeek (default):

[api_keys]
deepseek_api_key = "sk-..."
niutrans_api_key = "your-key"

[llm]
provider = "deepseek"

OpenRouter:

[api_keys]
openrouter_api_key = "sk-or-..."
niutrans_api_key = "your-key"

[llm]
provider = "openrouter"
model = "deepseek/deepseek-chat"   # any OpenRouter model slug

Atlas Cloud:

[api_keys]
atlascloud_api_key = "ak-..."
niutrans_api_key = "your-key"

[llm]
provider = "atlascloud"
model = "qwen/qwen3.5-flash"

OrcaRouter:

[api_keys]
orcarouter_api_key = "sk-orca-..."
niutrans_api_key = "your-key"

[llm]
provider = "orcarouter"
model = "deepseek/deepseek-chat"   # any OrcaRouter model slug

Override the API endpoint with base_url in [llm], or via LLM_BASE_URL / LLM_API_KEY environment variables. Full reference: docs/configuration.md.

n8n Workflow

  1. Import n8n/humanize_standard.json into your n8n instance
  2. Configure the LLM API key and URL in the HTTP Request nodes (defaults to DeepSeek; point at OpenRouter's https://openrouter.ai/api/v1/chat/completions to use OpenRouter)
  3. Run — input text goes in, humanized text comes out

Showcase — 5 Real Examples with Step-by-Step Outputs

We ran the pipeline end-to-end on 5 real input texts and saved every intermediate step. On these samples, all five final outputs were classified as human by the detector we tested. These are illustrative traces from the open chain, not a guarantee — detection is probabilistic and varies by detector and version (see the note at the top of this README).

#TopicDetectionConfidence
01Quantum Computinghuman0.9997
02Quantum Readiness Strategyhuman0.9982
03Sustainable Supply Chainshuman0.7810
04Financial Literacyhuman0.9924
05Peer Review in Sciencehuman0.7218

Each example shows: original input → Step 1 (中文改写) → Step 2 (日语改写) → Step 3 (一轮翻译) → Step 4 (二轮翻译, final). See examples/showcase/ for full traces.


Quality Metrics

Tested on 50 text pairs with expert evaluation:

DimensionScore (out of 10)
Information Completeness10.0
Language Fluency9.0
Style Adaptability8.8
Readability9.2
Creativity & Impact8.5
Overall9.1
  • Key Information Retention: 100% (50/50 pairs)
  • All texts preserved original key information without distortion

These scores evaluate this repo's Standard Pipeline output only — a static quality measure, not the Lynote.ai relative gains referenced at the top.


Comparison with Other Tiers

Standard (this repo)Lynote.ai
Tiers AvailableStandard onlyStandard + Advanced + Focus
Tier SelectionManualAutomatic per-passage
Style PreservationBestAdaptive — best possible per passage
SetupPython + API keysZero setup
Best ForStyle-sensitive contentAny content type

Documentation

Repo Structure

src/
├── standard/                # ★ v1.5.1 production Standard Pipeline (recommended)
│   ├── pipeline.py          # 4-step chain, CLI entry
│   ├── llm_client.py        # OpenAI-compatible client (DeepSeek / OpenRouter)
│   ├── llm_rewriter.py      # LLM humanization rewrite
│   └── translators.py       # Google + Niutrans engines
│
└── methodologies/           # v1.0 four-methodology reference implementations
    ├── humanizer.py         # v1.0 dispatcher + FastAPI app
    ├── translation_chain.py # Method 1
    ├── llm_rewriter.py      # Method 2
    ├── detection_pipeline.py# Method 3
    ├── mixed_engine.py      # Method 4
    ├── postprocess.py
    ├── detectors/           # Method 3 detectors
    └── utils/

examples/
├── example_usage.py         # ★ v1.5.1 minimal entry
├── showcase/                # ★ 5 real samples with intermediate-step outputs
└── legacy/                  # v1.0 examples + 4-method comparison outputs

Limitations

Round-trip translation costs precision. Technical terminology and citations can drift, and the deeper tiers trade more of your original voice for more restructuring. If you're working with anything where exact wording matters, read the output carefully rather than trusting the pipeline.

No rewriting method makes text reliably undetectable. Detectors update faster than pipelines do, and results vary by input length, subject matter, and which detector you're facing. Treat the showcase/ results as a snapshot, not a guarantee.

Related

License

MIT License. See LICENSE for details.


Support & Contact

Star this repository if this all-in-one text humanization toolkit helps you.

🌐 Visit official website lynote.ai to unlock full premium features.

💬 Have questions, feature requests or usage troubles? Feel free to start a discussion in Discussions.

关于 About

Open-source text humanization pipeline with every intermediate step published. Two LLM rewrites at temp 1.3, then two hops across different NMT engines. Four documented methodologies you can read, modify, and run locally.
ai-humanizerai-toolsai-writinghumanize-ai-texthumanize-textn8nparaphrasingpythonresponsible-aitext-humanizertext-processingtext-rewritingwriting-assistant

语言 Languages

Python98.4%
Dockerfile0.5%
Shell0.5%
Batchfile0.5%

提交活跃度 Commit Activity

代码提交热力图
过去 52 周的开发活跃度
47
Total Commits
峰值: 12次/周
Less
More

核心贡献者 Contributors