From 0d1cb3cdfb3914e348171aff17c5e0ca6742996c Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 24 May 2026 19:33:28 +0000 Subject: [PATCH] v3.9.0: add multi-account rotation docs to README --- README.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/README.md b/README.md index a7d7c46..d279877 100644 --- a/README.md +++ b/README.md @@ -535,6 +535,53 @@ The launcher generates model catalog JSON with dual field naming to satisfy both --- +## Multi-Account Rotation + +Codex Launcher supports **multiple accounts per provider** with automatic rotation +when one account is rate-limited. + +### Codebuff (Multiple Accounts) + +Register additional free accounts at [codebuff.com](https://www.codebuff.com), then +add them to `~/.config/manicode/credentials.json`: + +```json +{ + "default": { "authToken": "token-primary", "email": "you+1@gmail.com" }, + "accounts": [ + { "authToken": "token-secondary", "email": "you+2@gmail.com" }, + { "authToken": "token-tertiary", "email": "you+3@gmail.com" } + ] +} +``` + +Each account gets 5 free requests/day. With 3 accounts = **15 requests/day**. + +### Google OAuth (Multiple Projects) + +Add additional Google Cloud token files: + +``` +~/.cache/codex-proxy/google-antigravity-oauth-token.json # primary +~/.cache/codex-proxy/google-antigravity-oauth-token-1.json # extra project 1 +~/.cache/codex-proxy/google-antigravity-oauth-token-2.json # extra project 2 +``` + +### API Keys (Comma-Separated) + +For any OpenAI-compatible provider: +```json +{ "api_key": "sk-key1,sk-key2,sk-key3" } +``` + +### Account Status Endpoint + +```bash +curl http://127.0.0.1:PORT/v1/accounts +``` + +--- + ## Provider Presets | Preset | Backend | Base URL |