Skip to main content

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_KEY by 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

md2lang_oai-1.1.0.tar.gz (21.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

md2lang_oai-1.1.0-py3-none-any.whl (11.0 kB view details)

Uploaded Python 3

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

Hashes for md2lang_oai-1.1.0.tar.gz
Algorithm Hash digest
SHA256 2f0d5f899ea5ed6eb9a9857ad3ce3885d947ca41a131caa58f6b55aea64f16a4
MD5 8601f52fbeb6af9798e43f00ad90cd3d
BLAKE2b-256 cfeb5db4348bbd267fca820d9c572257cf85a99cc16f11b6353f2c24e42f5d82

See more details on using hashes here.

Provenance

The following attestation bundles were made for md2lang_oai-1.1.0.tar.gz:

Publisher: publish-to-pypi.yml on carloscasalar/md2lang-oai

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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

Hashes for md2lang_oai-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 a7245ab09d54fb7450dddd705386ac5658d37eec27cb837a1a4cb4fc9788765d
MD5 261a2c923790ef72959d005b36e7f044
BLAKE2b-256 e9461827d2a887a27bf7a724a3cf22f9fb869777691c0b9ed2247112dd83d607

See more details on using hashes here.

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

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page