Droid
Connect Factory's Droid to FluxRouter with a custom model in settings.json.
Factory's Droid talks to FluxRouter over the OpenAI endpoint at https://api.fluxrouter.ai/v1, and your Flux key is the only credential it needs.
Manual config
Add a custom model to ~/.factory/settings.json:
{
"customModels": [
{
"baseUrl": "https://api.fluxrouter.ai/v1",
"provider": "generic-chat-completion-api",
"model": "flux-auto",
"apiKey": "sk-YOUR-FLUX-KEY"
}
]
}
Test it
Start Droid and send a short prompt:
droid
If the response comes back, your traffic is flowing through FluxRouter. Check your dashboard to confirm the request landed.
Notes
Keep model set to flux-auto and FluxRouter picks the lane for each request. To pin a tier instead, set model to flux-fast, flux-standard, or flux-reasoning. The key lives directly in settings.json under apiKey, so keep that file readable only by you.