From 95e5e4c5c21bc4db432d9b11da234e4d00c8043d Mon Sep 17 00:00:00 2001 From: Harry Giunta Date: Tue, 22 Sep 2026 20:08:25 -0400 Subject: [PATCH] docs(cli): add Yolo-Auto BYOK guide --- docs/cli/byok/overview.mdx | 1 + docs/cli/byok/yolo-auto.mdx | 50 +++++++++++++++++++++++++++++++++++++ docs/docs.json | 3 ++- 3 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 docs/cli/byok/yolo-auto.mdx diff --git a/docs/cli/byok/overview.mdx b/docs/cli/byok/overview.mdx index ce309615..b61c73c4 100644 --- a/docs/cli/byok/overview.mdx +++ b/docs/cli/byok/overview.mdx @@ -220,6 +220,7 @@ Choose a provider from the left navigation to see specific configuration example - **[Ollama](/cli/byok/ollama)** - Run models locally or in the cloud - **[OpenAI & Anthropic](/cli/byok/openai-anthropic)** - Use your own API keys for official models - **[OpenRouter](/cli/byok/openrouter)** - Access multiple providers through a single interface +- **[Yolo-Auto](/cli/byok/yolo-auto)** - Flat-rate inference from the Yolo-Auto router --- diff --git a/docs/cli/byok/yolo-auto.mdx b/docs/cli/byok/yolo-auto.mdx new file mode 100644 index 00000000..820d9283 --- /dev/null +++ b/docs/cli/byok/yolo-auto.mdx @@ -0,0 +1,50 @@ +--- +title: Yolo-Auto +description: Flat-rate inference for the Yolo-Auto router's models +keywords: ['yolo-auto', 'api key', 'byok', 'openai compatible', 'router', 'custom model'] +--- + +Connect to Yolo-Auto, an OpenAI Chat Completions-compatible inference router that bills as a flat-rate subscription instead of per token. + +## Configuration + +Add to `~/.factory/settings.json`: + +```json +{ + "customModels": [ + { + "model": "yolo", + "displayName": "Yolo [Yolo-Auto]", + "baseUrl": "https://yolo-auto.com/v1", + "apiKey": "${YOLO_AUTO_API_KEY}", + "provider": "generic-chat-completion-api", + "maxOutputTokens": 16384 + }, + { + "model": "yolo-small", + "displayName": "Yolo Small [Yolo-Auto]", + "baseUrl": "https://yolo-auto.com/v1", + "apiKey": "${YOLO_AUTO_API_KEY}", + "provider": "generic-chat-completion-api", + "maxOutputTokens": 16384 + } + ] +} +``` + +## Getting Started + +1. Sign up at [yolo-auto.com](https://yolo-auto.com) +2. Create an API key in your dashboard +3. Export it: `export YOLO_AUTO_API_KEY=your_key_here` +4. Add the models above to your configuration + +## Notes + +- Base URL format: `https://yolo-auto.com/v1` +- Yolo-Auto uses the `generic-chat-completion-api` provider type +- `yolo` is the reasoning route and accepts the `minimal`, `low`, `medium`, `high`, and `xhigh` reasoning-effort values; `yolo-small` is a non-reasoning fast route +- Both models accept image inputs and stream tool calls over SSE +- Requests are capped to the context window of your subscription plan (131072 tokens on all plans except Pro); the gateway rejects oversized prompts rather than truncating them +- Billing is a flat-rate subscription and the gateway does not meter per token, so any per-token cost Droid estimates for these models is not money the gateway charges diff --git a/docs/docs.json b/docs/docs.json index 1073c12f..3c45c29f 100644 --- a/docs/docs.json +++ b/docs/docs.json @@ -132,7 +132,8 @@ "cli/byok/lm-studio", "cli/byok/ollama", "cli/byok/openai-anthropic", - "cli/byok/openrouter" + "cli/byok/openrouter", + "cli/byok/yolo-auto" ] } ]