Models
SQLsaber supports many LLM models across different providers.
This guide covers model selection, configuration, and recommendations for the best SQL query generation.
Default Model
Section titled “Default Model”SQLsaber uses Claude Opus 4.6 by default, which provides excellent SQL generation capabilities with good speed and accuracy.
Recommended Models
Section titled “Recommended Models”While SQLsaber supports a lot of models, we recommend the following for best results:
- Any Claude Opus or Sonnet
- Gemini 3.1 Pro, 3.5 Flash or later
- Codex-5.3, 5.2, GPT-5.4, 5.5 or later
Model Management
Section titled “Model Management”List Available Models
Section titled “List Available Models”saber models listSet Your Default Model
Section titled “Set Your Default Model”Change the default model:
saber models setThis interactive command lets you:
- Choose from configured providers
- Select a specific model
- Set it as your default
- Configure thinking
For scripts and coding agents, set the model and thinking level directly without fetching the model list or opening a prompt:
saber models set openai:gpt-5 --thinking-level mediumSubagent Overrides
Section titled “Subagent Overrides”You can override the model used by subagents like handoff and viz without changing the main model:
saber models set --agent handoffsaber models set --agent viz
# Direct, non-interactive overridesaber models set openai:gpt-5 --agent handoffIf no override is set, the subagent uses the main model.
Reset to Default
Section titled “Reset to Default”Return to the original default (Claude Opus 4.6):
saber models resetsaber models reset --yesGetting Help
Section titled “Getting Help”Check your current model and available options:
saber models currentsaber models --helpWhat’s Next?
Section titled “What’s Next?”After configuring your models: