Skip to main content

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.

Droid is Factory AI’s CLI coding assistant. With BYOK, you can connect LLMEasy as a custom OpenAI-compatible provider.

Prerequisites

  • LLMEasy API Key (register here (https://www.llmeasy.ru/register))

Install Droid

curl -fsSL https://app.factory.ai/cli | sh

Setup

1

Clear conflicting environment variables

unset OPENAI_API_KEY
unset OPENAI_BASE_URL
2

Set the LLMEasy API Key

export LLMEASY_API_KEY="YOUR_API_KEY"
3

Edit the Droid config file

Config file path: ~/.factory/settings.json
{
  "customModels": [
    {
      "displayName": "LLMEasy Codex",
      "model": "YOUR_CODEX_MODEL_ID",
      "baseUrl": "https://www.llmeasy.ru/v1",
      "apiKey": "${LLMEASY_API_KEY}",
      "provider": "openai",
      "maxOutputTokens": 64000
    }
  ]
}
Replace YOUR_CODEX_MODEL_ID with a current Codex group model ID copied from the model plaza (https://www.llmeasy.ru/pricing).
4

Only configure extra headers when the official docs explicitly require them

We did not find an official Droid setup requirement that makes User-Agent mandatory for LLMEasy. Start with the Base URL, API key, and model ID shown on this page.If you are also using a custom gateway, tenant routing, observability, or caching layer, add headers only according to that upstream service’s official docs.
5

Restart Droid

After updating the config file or environment variables, stop the current Droid process and launch it again.
6

Start Droid

cd /path/to/your/project
droid
If your version labels the provider as OpenAI Compatible instead of openai, follow the current UI label. If you need extra headers, follow the current Droid docs or your upstream gateway requirements instead of assuming User-Agent is mandatory for LLMEasy.