3.1 KiB
Effort Levels
Pullfrog supports three effort levels that control model selection and reasoning depth:
#mini— Fast, minimal reasoning. Best for simple tasks.#auto— Balanced (default). Good for most tasks.#max— Maximum capability. Best for complex tasks requiring deep reasoning.
The effort level can be specified via:
- Macros in the prompt (
#mini,#auto,#max) - The
effortinput inaction.yml - The payload's
effortfield
Claude Code
Claude Code uses model selection based on effort level.
| Effort | Model | Description |
|---|---|---|
mini |
haiku |
Fast, efficient |
auto |
opusplan |
Opus for planning, Sonnet for execution |
max |
opus |
Full Opus |
Future direction: Anthropic's beta
effortparameter (low/medium/high) could replace model selection, using Opus 4.5 for all tasks with effort controlling token spend. See Anthropic Effort Docs.
Codex (OpenAI)
Codex uses both model selection and the modelReasoningEffort parameter from ThreadOptions.
| Effort | Model | modelReasoningEffort |
Description |
|---|---|---|---|
mini |
gpt-5.1-codex-mini |
"low" |
Smaller model, reduced reasoning |
auto |
gpt-5.1-codex |
default | Standard model, default reasoning |
max |
gpt-5.1-codex-max |
"high" |
Largest model, maximum reasoning |
Valid values for modelReasoningEffort: "minimal" | "low" | "medium" | "high"
Reference: Codex Config Reference
Gemini
Gemini uses a combination of model selection and thinkingLevel configuration via settings.json.
| Effort | Model | thinkingLevel |
Description |
|---|---|---|---|
mini |
gemini-2.5-flash |
LOW |
Fast model, minimal thinking |
auto |
gemini-2.5-flash |
HIGH |
Fast model, deep thinking |
max |
gemini-2.5-pro |
HIGH |
Most capable model, deep thinking |
The thinkingLevel is configured via:
{
"modelConfig": {
"generateContentConfig": {
"thinkingConfig": {
"thinkingLevel": "LOW"
}
}
}
}
Reference: Gemini Thinking Docs
Cursor
Cursor uses model selection via the --model CLI flag. Project-level configuration in .cursor/cli.json takes precedence if a model is specified there.
| Effort | Model | Description |
|---|---|---|
mini |
auto (default) |
Let Cursor select optimal model |
auto |
auto (default) |
Let Cursor select optimal model |
max |
opus-4.5-thinking |
Claude 4.5 Opus with thinking |
Note: If the project has .cursor/cli.json with a model field, that model is used regardless of effort level.
OpenCode
OpenCode does not currently have affordances for effort-level configuration. The effort parameter is ignored.
| Effort | Behavior |
|---|---|
mini |
No effect |
auto |
No effect |
max |
No effect |