Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/cli/byok/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

---

Expand Down
50 changes: 50 additions & 0 deletions docs/cli/byok/yolo-auto.mdx
Original file line number Diff line number Diff line change
@@ -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
3 changes: 2 additions & 1 deletion docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
]
}
]
Expand Down