Configuration
Settings File
Section titled “Settings File”Location: ~/.config/fastlane/settings.toml
[general]host = "127.0.0.1" # Bind addressport = 8787 # Port numbermode = "balanced" # cheap, balanced, or accurate
[byok]openai_key = "sk-..."anthropic_key = "sk-ant-..."groq_key = "gsk-..."openrouter_key = "sk-or-..."backend_url = "https://api.fastlane.dev"device_id = "auto-generated-uuid"Environment Variables
Section titled “Environment Variables”# Override model directoryexport FASTLANE_MODEL_DIR=/path/to/models
# Rust loggingexport RUST_LOG=fastlane=debug,tower_http=debugCLI Options
Section titled “CLI Options”fastlane [OPTIONS]
Options: --host <HOST> Bind address [default: 127.0.0.1] --port <PORT> Port number [default: 8787] --model-dir <DIR> Path to ONNX model directoryModel Directory
Section titled “Model Directory”The ONNX model files should be in:
training/models/baseline/├── model.onnx├── model.onnx.data├── tokenizer.json├── tokenizer_config.json└── meta.jsonBy default, Fastlane looks in:
$FASTLANE_MODEL_DIRenvironment variable~/.local/share/fastlane/models/baseline/training/models/baseline/(relative to binary)