-
-
Notifications
You must be signed in to change notification settings - Fork 8
AI Engines
Lord0fTurk edited this page Feb 6, 2026
·
3 revisions
RenLocalizer integrates modern Large Language Models (LLMs) to provide context-aware, high-quality translations that understand the nuances of your game's dialogue.
The industry standard for high-quality AI translation.
- Setup: Enter your API key in the Settings tab.
-
OpenRouter Support: To use models like Claude 3.5 or Llama 3, change the Base URL to
https://openrouter.ai/api/v1and use your OpenRouter key.
Fast, reliable, and often includes a generous free tier.
-
Setup: Select the
Geminiprovider. - API Key: Obtain your key from Google AI Studio.
-
Safety Hint: Set the safety threshold to
BLOCK_NONEfor uncensored game content.
Run models locally on your hardware. No cost, 100% privacy.
- Supported Backends: Ollama, LM Studio, LocalAI.
-
Model Recommendations:
Qwen 2.5 7B,Llama 3.1 8B, orDolphin-Mistral. -
Default URLs:
- Ollama:
http://localhost:11434/v1 - LM Studio:
http://localhost:1234/v1
- Ollama:
State-of-the-art reasoning model, excellent for complex syntax.
-
Setup: Select the
DeepSeekprovider in Settings. - API Key: Get it from platform.deepseek.com.
-
Why use it? DeepSeek follows XML tag instructions (
<ph id="0">) with near-perfect accuracy, making it ideal for code-heavy games.
In v2.6.4+, RenLocalizer wraps all variables and placeholders in XML tags before sending them to the AI.
-
Original:
Hello [player_name], you obtained {b}Sword{/b}. -
Sent to AI:
Hello <ph id="0">[player_name]</ph>, you obtained <ph id="1">{b}</ph>Sword<ph id="2">{/b}</ph>. -
Benefit: The AI understands that anything inside
<ph>tags is sacred code and must not be translated. This drastically reduces syntax errors.
| Parameter | Default | Description |
|---|---|---|
| Temperature | 0.3 | 0.1-0.3 for consistency. 0.7+ for creative flair. |
| Max Tokens | 2048 | Limits the length of the AI's response. |
| Batch Size | 5-10 | Strings per prompt. Higher is faster but may reduce quality. |
| System Prompt | Auto | Instructions for the AI (e.g., "Translate as a fantasy novelist"). |
Standard AI providers (OpenAI/Gemini) may refuse to translate "NSFW" or violent content due to their safety policies.
-
Gemini: Set Safety Level to
BLOCK_NONE. -
OpenRouter: Use "Uncensored" models like
dolphin-mistral. - Local LLM: Use models without ethical alignment (Instruct/Uncensored).
- Fallback: RenLocalizer can automatically use Google Translate if the AI refuses a specific line.
📘 See Also: LM-Studio-Guide for a detailed local setup.
- Advanced-Parsing
- RPA-Extraction
- Glossary-Management
- External-Translation-Memory — (NEW) Reuse translations across games
- Technical-Filtering
- Proxy-and-Rate-Limits
- Web-Google-Translate-Guide