Documentation Index
Fetch the complete documentation index at: https://docs.llmeasy.ru/llms.txt
Use this file to discover all available pages before exploring further.
Keep your API Key secure
Use environment variables — never hardcode. Writing your API Key directly into source code or config files risks accidental exposure in version control. Recommended approach:env field in settings.json rather than exposing them in your shell config:
Set a generous timeout
AI model responses can take time, especially for complex reasoning tasks. Set the timeout high enough to avoid premature disconnects:3000000 ms = 50 minutes. This is appropriate for deep reasoning or long agentic tasks.
Clear conflicting environment variables
If you’ve previously used the official Anthropic or OpenAI APIs — or another relay service — stale environment variables may override your LLMEasy config and silently send requests to the wrong endpoint. Before configuring LLMEasy, check and clear these:Claude Code: check the API Key group first
With aClaude_* key, do not set ANTHROPIC_MODEL, ANTHROPIC_SMALL_FAST_MODEL, ANTHROPIC_DEFAULT_SONNET_MODEL, or other model-specific variables. With a Codex_* key, add model mappings through ANTHROPIC_DEFAULT_HAIKU_MODEL, ANTHROPIC_DEFAULT_SONNET_MODEL, and ANTHROPIC_DEFAULT_OPUS_MODEL.
Do not mix the two setups, or requests may be routed to the wrong model.
Disable non-essential traffic. Setting CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1 reduces background requests from Claude Code, reserving your API quota for actual coding tasks.
Do not add /v1 to Claude Code. ANTHROPIC_BASE_URL should be https://www.llmeasy.ru.
Use one API Key across multiple tools
The same API Key works in Claude Code, Codex, and external tools. Quota is shared, which makes central management simpler. But the endpoint must match the protocol:- Claude Code /
ANTHROPIC_BASE_URL:https://www.llmeasy.ru - Codex /
OPENAI_BASE_URL/ external tools:https://www.llmeasy.ru/v1
https://www.llmeasy.ru/pricing).
Troubleshooting checklist
- Confirm the API Key is correct — check the dashboard, paste carefully with no extra spaces
- Confirm the endpoint for the protocol — Claude Code uses
https://www.llmeasy.ru; Codex / external tools usehttps://www.llmeasy.ru/v1 - Check for conflicting env vars — run
echo $ANTHROPIC_AUTH_TOKEN,echo $OPENAI_BASE_URL, and related commands - Check the tool’s official setup requirements — for external tools, verify the
Base URL, API key, model ID, and tool version first; only add extra headers when the tool’s official docs or your upstream gateway explicitly requires them - Check your balance — requests are rejected when the balance is depleted
- Contact support — if the above steps don’t resolve the issue