Document env variables in Readme.md

Change-Id: I47c2eb9799fc8f8e0ab2d4f4edc65ad5c97ecd38
diff --git a/Readme.md b/Readme.md
index ccf976b..7e3ab6c 100644
--- a/Readme.md
+++ b/Readme.md
@@ -56,6 +56,14 @@
 - `--lemma`: Use lemmas instead of surface forms (when available)
 - `--lemma-only`: Skip loading base tokens, output only lemmas
 
+## Environment Variables
+
+For the wrapper scripts in `build/bin/`, you can configure the JVM and model paths via environment variables:
+
+- `KORAPXMLTOOL_MODELS_PATH`: Directory where tagger and parser models are searched if not found locally. (Default: `../lib/models` relative to the wrapper script's directory)
+- `KORAPXMLTOOL_XMX`: Maximum Java heap memory size (e.g., `16g`, `500g`). (Default: auto-detected based on available system memory, input size, and workload type)
+- `KORAPXMLTOOL_JAVA_OPTS`: Additional Java options (e.g., `-XX:+UseG1GC`).
+
 ## Conversion to [CoNLL-U format](https://universaldependencies.org/format.html)
 
 ```shell script