Minimal CLI to translate Markdown/text to a target locale via an OpenAI-compatible Chat Completions endpoint.
Project description
md2lang-oai
Minimal CLI that translates Markdown/text into a target locale using an OpenAI-compatible Chat Completions HTTP endpoint.
Quick start
Run without installing:
uvx md2lang-oai --help
Usage
Translate from stdin to stdout:
echo "Hello" | uvx md2lang-oai --to es-ES
Translate a file:
uvx md2lang-oai --to es-ES --input README.md
Write to a file:
uvx md2lang-oai --to es-ES --input input.md --output output.md
Pipe-friendly (stdin):
cat input.md | uvx md2lang-oai --to es-ES > output.md
Provide custom translation instructions:
uvx md2lang-oai --to es-ES --input dnd_adventure.md --instructions-file dnd_instructions.txt
Configuration
- API key is read from
OPENAI_API_KEYby default. - Choose a different env var name with
--api-key-env. - Override the endpoint with
--base-url(must be OpenAI-compatible). - Choose a model with
--model. - Adjust timeout with
--timeout(default: 300s for slow/local models). - Control chunking with
--max-tokens(default: 3000 tokens per chunk). - Provide custom translation instructions with
--instructions-file(e.g., for domain-specific terminology).
Example:
export OPENAI_API_KEY="..."
uvx md2lang-oai --to es-ES --model gpt-4o-mini < input.md
Large files and context limits
If your input exceeds the model's context window, the CLI automatically splits it into chunks by paragraph boundaries. Each chunk is translated separately and reassembled. Adjust --max-tokens to fit your model's limit (e.g., 3000 for small models, 8000+ for larger ones).
Example for a local Ollama model with a 4K context:
export OPENAI_API_KEY=test
uvx md2lang-oai --to es-ES --model openchat:7b --base-url http://localhost:11434/v1 --max-tokens 2000 --timeout 600 --input large-file.md --output large-file-es.md
Custom translation instructions
You can provide domain-specific instructions to guide the translation process. For instance, when translating a tabletop role-playing adventure, you may want specific acronyms to be translated in a particular way:
Create a file dnd_instructions.txt:
Regarding acronyms, translate:
- STR as FUE
- DEX as DES
- CON as CON
- WIS as SAB
- CHA as CAR
Then use it:
uvx md2lang-oai --to es-ES --input dnd_adventure.md --instructions-file dnd_instructions.txt
The instructions can be plain text or Markdown and will be appended to the system prompt sent to the model.
Markdown handling
The tool preserves Markdown structure as much as possible:
- Does not translate inside fenced code blocks (
...). - Does not translate inline code spans (
like this). - Keeps link/image syntax intact; URLs are never translated.
Development
Install dependencies and create a virtual environment:
uv sync
This will create a .venv directory with all dependencies installed.
Run tests:
uv run pytest
Project details
Release history Release notifications | RSS feed
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 md2lang_oai-1.1.0.tar.gz.
File metadata
- Download URL: md2lang_oai-1.1.0.tar.gz
- Upload date:
- Size: 21.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2f0d5f899ea5ed6eb9a9857ad3ce3885d947ca41a131caa58f6b55aea64f16a4
|
|
| MD5 |
8601f52fbeb6af9798e43f00ad90cd3d
|
|
| BLAKE2b-256 |
cfeb5db4348bbd267fca820d9c572257cf85a99cc16f11b6353f2c24e42f5d82
|
Provenance
The following attestation bundles were made for md2lang_oai-1.1.0.tar.gz:
Publisher:
publish-to-pypi.yml on carloscasalar/md2lang-oai
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
md2lang_oai-1.1.0.tar.gz -
Subject digest:
2f0d5f899ea5ed6eb9a9857ad3ce3885d947ca41a131caa58f6b55aea64f16a4 - Sigstore transparency entry: 779148010
- Sigstore integration time:
-
Permalink:
carloscasalar/md2lang-oai@82ac6fca80bbd5251d67b83bafa10478f395e66c -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/carloscasalar
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@82ac6fca80bbd5251d67b83bafa10478f395e66c -
Trigger Event:
push
-
Statement type:
File details
Details for the file md2lang_oai-1.1.0-py3-none-any.whl.
File metadata
- Download URL: md2lang_oai-1.1.0-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7245ab09d54fb7450dddd705386ac5658d37eec27cb837a1a4cb4fc9788765d
|
|
| MD5 |
261a2c923790ef72959d005b36e7f044
|
|
| BLAKE2b-256 |
e9461827d2a887a27bf7a724a3cf22f9fb869777691c0b9ed2247112dd83d607
|
Provenance
The following attestation bundles were made for md2lang_oai-1.1.0-py3-none-any.whl:
Publisher:
publish-to-pypi.yml on carloscasalar/md2lang-oai
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
md2lang_oai-1.1.0-py3-none-any.whl -
Subject digest:
a7245ab09d54fb7450dddd705386ac5658d37eec27cb837a1a4cb4fc9788765d - Sigstore transparency entry: 779148012
- Sigstore integration time:
-
Permalink:
carloscasalar/md2lang-oai@82ac6fca80bbd5251d67b83bafa10478f395e66c -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/carloscasalar
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-to-pypi.yml@82ac6fca80bbd5251d67b83bafa10478f395e66c -
Trigger Event:
push
-
Statement type: