More tools
Connect other OpenAI-compatible tools to FluxRouter with the same base-URL swap.
These tools are OpenAI-compatible and work with FluxRouter through the same base-URL swap. Point each one at https://api.fluxrouter.ai/v1 with your Flux key and use flux-auto as the model.
OpenHands
Set the LLM environment variables to your Flux endpoint and key:
export LLM_BASE_URL="https://api.fluxrouter.ai/v1"
export LLM_API_KEY="sk-YOUR-FLUX-KEY"
export LLM_MODEL="openai/flux-auto"
Keep the openai/ prefix on the model so OpenHands uses its OpenAI-compatible driver.
LLM
Simon Willison's llm CLI reads custom endpoints from extra-openai-models.yaml. Add an entry:
- model_id: flux-auto
api_base: https://api.fluxrouter.ai/v1
api_key_name: flux
Plandex
Add a custom provider pointing at FluxRouter:
baseUrl: https://api.fluxrouter.ai/v1
apiKey: sk-YOUR-FLUX-KEY
Mods
In your mods config, add an apis entry:
apis:
flux:
base-url: https://api.fluxrouter.ai/v1
models:
flux-auto:
aliases: ["flux"]
Notes
Every tool here uses flux-auto, which picks the model for each request. To pin a tier, swap in a lane: flux-fast, flux-standard, or flux-reasoning.