langchain-adeu
LangChain integration for Adeu — Track Changes for Microsoft Word (.docx) in the LLM Era.
This package wraps the local, cross-platform, and offline-capable subset of Adeu's document-editing engine as native LangChain tools. It enables LangChain and LangGraph agents to read, edit, diff, sanitize, and finalize Microsoft Word documents while preserving the underlying formatting, layout, custom styles, and XML structures.
Installation
Install the package via pip or uv:
Using pip
pip install langchain-adeu
Using uv
uv add langchain-adeu
Quick Start
Instantiate the AdeuToolkit and register its tools with a tool-calling chat model. This short example initializes an agent capable of managing docx operations.
from langchain.agents import create_agent
from langchain_openai import ChatOpenAI
from langchain_adeu import AdeuToolkit
# Load a tool-calling model
model = ChatOpenAI(model="anthropic:claude-sonnet-4-6")
# Initialize the toolkit
toolkit = AdeuToolkit()
tools = toolkit.get_tools()
# Create the agent
agent = create_agent(model=model, tools=tools)
Worked Example: Multi-Tool Review & Redline Flow
Below is a complete, runnable workflow illustrating how an agent can read an existing draft, apply tracked changes, generate a visual diff, and sanitize metadata before sending it to a counterparty.
from langchain_adeu import AdeuToolkit
# 1. Instantiate the toolkit
tools_map = {t.name: t for t in AdeuToolkit().get_tools()}
read_tool = tools_map["adeu_read_docx"]
apply_tool = tools_map["adeu_apply_changes"]
diff_tool = tools_map["adeu_diff_docx"]
sanitize_tool = tools_map["adeu_sanitize_docx"]
input_path = "MSA_draft.docx"
redline_path = "MSA_redlined.docx"
clean_path = "MSA_final.docx"
# 2. Read the document to extract text with active tracked changes & comments
# clean_view=False ensures the LLM sees inline CriticMarkup (e.g. {++inserted++})
read_result = read_tool.invoke({
"reasoning": "Reading the draft to review tracked changes and comments.",
"file_path": input_path,
"clean_view": False,
"mode": "full",
"page": 1
})
print("--- Document Contents ---\n", read_result)
# 3. Apply a batch of edits (tracked modifications + a comment reply)
apply_result = apply_tool.invoke({
"reasoning": "Applying jurisdiction edits and replying to a comment.",
"file_path": input_path,
"author_name": "AI Reviewer",
"output_path": redline_path,
"changes": [
{
"type": "modify",
"target_text": "Governing Law shall be the State of New York.",
"new_text": "Governing Law shall be the State of Delaware.",
"comment": "Updating jurisdiction to corporate standard."
},
{
"type": "reply",
"target_id": "Com:1",
"text": "Agreed. Applied jurisdiction change."
}
]
})
print("\n--- Changes Applied ---\n", apply_result)
# 4. Generate a word-level diff to verify edits
diff_result = diff_tool.invoke({
"reasoning": "Verifying the applied edits with a word-level diff.",
"original_path": input_path,
"modified_path": redline_path,
"compare_clean": True
})
print("\n--- Word-Level Diff ---\n", diff_result)
# 5. Sanitize document properties and remove author history for final delivery
# keep_markup=True preserves unresolved track changes while stripping metadata
sanitize_result = sanitize_tool.invoke({
"reasoning": "Stripping metadata before delivering the redline.",
"file_path": redline_path,
"output_path": clean_path,
"keep_markup": True,
"author": "Anonymous Advisor"
})
print("\n--- Sanitization Report ---\n", sanitize_result)
Reading Large Documents & Navigation Ladder
When working with long documents (e.g. 50+ pages), avoid loading the entire text into the LLM context at once. Follow this progressive navigation ladder:
- Plan structure (
mode="outline"): Inspect document hierarchy (headings, sections, tables) with optional depth limits viaoutline_max_leveland detailed metadata withoutline_verbose=True. - Read by slice (
page=Norpage="2-6"): Load targeted page ranges or specific sections rather than the full document (page="all"). When reading the entire document withpage="all", passforce=Trueto override the response-budget refusal on large documents. - Locate exact clauses (
search_query): Find specific terms or phrases with pagination support (max_matches,match_offset), regex support (search_regex=True), case sensitivity (search_case_sensitive=True), and full-paragraph context (full_paragraph=True). - Collect tracked-change IDs (
mode="changes"): Retrieve the ledger of active revisions and comment threads with fresh IDs (filtered optionally bychanges_authoror paginated viachanges_offset) before executingaccept,reject, orreplyoperations.
Transactional vs. Partial Edits & Sanitization Safety
- Salvage vs. Transactional Edits (
partial): By default (partial=True),adeu_apply_changesoperates in salvage mode: valid edits are committed and saved while failing ones are recorded in the artifact andPARTIAL:report header for correction. Settingpartial=Falseenables strict all-or-nothing transactional semantics where any validation failure rejects the entire batch and writes no output file. - Sanitization Refusal Safety (
status="blocked"):adeu_sanitize_docxreturnsstatus="blocked"with an explanatory report instead of raising a tool error when aSanitizeErroris encountered (e.g., attempting a full sanitize of a document with unresolved tracked changes withoutaccept_all=Trueorkeep_markup=True, or comparing against a low-similarity baseline withoutallow_low_similarity_baseline=True), aborting without modifying or writing an output file. - Text-Revision Verification Gate (
success=False):adeu_apply_text_revisionre-reads the applied document's clean text and compares it against the text you supplied. On a mismatch (e.g. headings or table cells that cannot be deleted via text replacement) it returnssuccess=Falsewithstatus="verification_failed", writes nothing tooutput_path, and keeps a<stem>.unverified.docxdiagnostic copy atunverified_output_path— that copy is not the requested document. The artifact also relays the engine's own post-gate stats, soedits_skipped, the per-editeditsreports (each markedstatus="failed") andverification_errordescribe exactly what was attempted. A revision that would delete the majority of the document is refused the same way (status="error") unlessallow_major_deletions=True.
Per-Tool Reference
| Tool Name | Purpose / When to Use | Key Input Parameters | Response Format / Output Shape |
|---|---|---|---|
adeu_read_docx |
Reads a .docx file into Markdown. Use clean_view=False to audit active track-changes, or inspect document structure with specialized modes and search. |
file_path (str), clean_view (bool), mode ("full", "outline", "appendix", "changes"), page (int, str e.g. '2-6', 'all'), force (bool), outline_max_level (int), outline_verbose (bool), search_query (str), search_regex (bool), search_case_sensitive (bool), max_matches (int), match_offset (int), full_paragraph (bool), changes_author (str), changes_offset (int) |
content_and_artifact (Returns projected Markdown text + structured metadata artifact) |
adeu_apply_changes |
Commits a batch of edits as native track-changes and comment threads. Operates in salvage mode by default (partial=True); set partial=False for strict transactional semantics. |
file_path (str), author_name (str), changes (list[dict]), output_path (str), partial (bool) |
content_and_artifact (Returns completion text + structured change stats) |
adeu_apply_text_revision |
Rewrites a whole document from revised clean text: Adeu diffs your text against the document's clean view and writes the delta as tracked changes. Use when handing back the entire edited text is easier than enumerating edits. revised_text must cover the ENTIRE document — anything omitted becomes a tracked deletion — and must contain no CriticMarkup. |
file_path (str), revised_text (str), output_path (str), author (str), allow_major_deletions (bool) |
content_and_artifact (Returns completion text + artifact with success, verified, edits_applied, status; on refusal success=False with status="verification_failed" — plus unverified_output_path — or status="error", and no output file) |
adeu_diff_docx |
Generates a word-level patch, unified diff, or structured changes JSON showing insertions and deletions between two files. | original_path (str), modified_path (str), compare_clean (bool), diff_format ("word_patch", "unified", "structured_changes") |
content (Returns free-form @@ Word Patch @@ visual text, a unified diff, or — for "structured_changes" — a JSON object {"changes": [...DocumentChange], "warnings": [...]} that can be passed straight to adeu_apply_changes) |
adeu_accept_all_changes |
Resolves and bakes all tracked changes and format modifications into plain text. Optionally removes comments. | file_path (str), output_path (str), remove_comments (bool) |
content_and_artifact (Returns completion text + artifact mapping paths) |
adeu_sanitize_docx |
Cleans document properties (author names, RSIDs, Custom XML, DMS traces). Validates against an optional baseline document. | file_path (str), output_path (str), keep_markup (bool), baseline_path (str), author (str), accept_all (bool), allow_low_similarity_baseline (bool) |
content_and_artifact (Returns human-readable report text + structured cleanup stats) |
What's NOT Included
This package intentionally focuses on local, cross-platform, offline-capable workflows. For the following, use the Adeu MCP server directly:
- Live MS Word Interop (Windows COM) — real-time edits on an active Microsoft Word canvas.
- Adeu Cloud Features — email fetching, multi-document asynchronous semantic validation.
- MCP Apps UI — interactive Markdown preview rendering inside custom client interfaces.
Development & Testing
We use uv for dependency management and workspace isolation.
Installation
Sync development and testing dependencies locally:
make install
Running Tests
To run unit tests (isolated, socket-disabled):
make test
To run integration tests (requires real fixture .docx documents):
make integration_test
Code Formatting & Linting
We enforce Ruff for formatting and linting:
make format
make lint
License
MIT. See LICENSE.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file langchain_adeu-2.4.1.tar.gz.
File metadata
- Download URL: langchain_adeu-2.4.1.tar.gz
- Upload date:
- Size: 206.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34592a1051d15add9218bd2848aee980b29b72a9d9869ba9ce3f4050f419dd09
|
|
| MD5 |
e28bc050f9142c66b7d22699fefc8ab8
|
|
| BLAKE2b-256 |
6806a6c3342131e15743db70282ec392bcf15073764e10dfbc37b714008e8f44
|
Provenance
The following attestation bundles were made for langchain_adeu-2.4.1.tar.gz:
Publisher:
release.yml on dealfluence/adeu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
langchain_adeu-2.4.1.tar.gz -
Subject digest:
34592a1051d15add9218bd2848aee980b29b72a9d9869ba9ce3f4050f419dd09 - Sigstore transparency entry: 2501175798
- Sigstore integration time:
-
Permalink:
dealfluence/adeu@b75a13004e2bec0cf2d7ac19772f7366161f257a -
Branch / Tag:
refs/tags/v2.4.1 - Owner: https://github.com/dealfluence
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b75a13004e2bec0cf2d7ac19772f7366161f257a -
Trigger Event:
release
-
Statement type:
File details
Details for the file langchain_adeu-2.4.1-py3-none-any.whl.
File metadata
- Download URL: langchain_adeu-2.4.1-py3-none-any.whl
- Upload date:
- Size: 36.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc1d499519b14b258424ffe10fa5f10af0816aac3fbd25d95634339841a18b43
|
|
| MD5 |
99687a0ec035664423a070cf1d970832
|
|
| BLAKE2b-256 |
3030690c741453cf06ee10b190faa1c721e1bf6422d01258e98c3a6e11a13489
|
Provenance
The following attestation bundles were made for langchain_adeu-2.4.1-py3-none-any.whl:
Publisher:
release.yml on dealfluence/adeu
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
langchain_adeu-2.4.1-py3-none-any.whl -
Subject digest:
dc1d499519b14b258424ffe10fa5f10af0816aac3fbd25d95634339841a18b43 - Sigstore transparency entry: 2501175806
- Sigstore integration time:
-
Permalink:
dealfluence/adeu@b75a13004e2bec0cf2d7ac19772f7366161f257a -
Branch / Tag:
refs/tags/v2.4.1 - Owner: https://github.com/dealfluence
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@b75a13004e2bec0cf2d7ac19772f7366161f257a -
Trigger Event:
release
-
Statement type: