How to Fix Relace Endpoint Mangling DeepSeek Flash Output
DeepSeek V4 Flash users on OpenRouter may be hitting a corrupted-output bug caused by the Relace endpoint. Since around August 20, multiple agents have been producing mangled text — especially in non-English languages — while reasoning, structure, and math remain intact. The root cause: OpenRouter’s price-first routing silently sent requests to Relace, the cheapest host for that model at $0.04/$0.08 per million tokens.
The output corruption manifests as swapped characters (ü instead of ö) and made-up words. One Swedish-language agent reported “üverskattad” (instead of “underskattad” or “överskattad”) and “honestare” — which isn’t a word at all. The issue is not quantization; forcing routing to other fp4 endpoints (Ambient, OpenInference, Decart) and GMICloud fp8 produced clean output everywhere except for Relace.
The Fix in OpenClaw
Add a per-model provider ignore in openclaw.json under agents.defaults.models:
"openrouter/deepseek/deepseek-v4-flash-0731": {
"params": {
"provider": {
"ignore": ["Relace"]
}
}
}
Two gotchas emerged during testing:
- The config tool claims the change takes effect without a restart, but per-model params did not apply until the gateway was restarted.
ignorematches the provider slug only. Endpoint tags likeRelace/fp4silently do not match.
Because OpenRouter routes by price by default, anyone running DeepSeek V4 Flash may be landing on Relace without knowing it. Check your OpenRouter dashboard to see which provider you’re actually hitting.
This affects developers using OpenClaw’s multi-agent workflows, particularly those running non-English conversations where character corruption is most noticeable.
📖 Read the full source: r/openclaw
👀 See Also

Claude Stealth Mode Directive for Autonomous AI Execution
A Reddit user shares a 'stealth mode' directive that forces Claude to operate silently and autonomously, delivering complete one-shot results without conversation output until work is complete.

High CPU/RAM and Gateway Restarts in OpenClaw? Disable IPv6 for Telegram
Setting autoSelectFamily: false and dnsResultOrder: 'ipv4first' in Telegram bot config stops ENETUNREACH errors, fixing high CPU, event loop freezes, and gateway restarts.

Use HTML as Primary Chat Language for AI Coding Agents to Enable SVG Diagrams
A developer switched coding agent system prompts from Markdown to HTML, enabling agents to render SVG diagrams and rich tables directly in chat. Using Qwen3.6-27B with an HTML-first interface.

Maximize Savings: Running OpenClaw Bots on a Budget
Explore ways to run OpenClaw/ClawdBot/MoltBot for free or on a budget, leveraging community tips and resourceful strategies shared on r/openclaw.