feat: add heartbeatProvider and heartbeatModel config options#50
Closed
simonsickle wants to merge 1 commit intoopenclaw:mainfrom
Closed
feat: add heartbeatProvider and heartbeatModel config options#50simonsickle wants to merge 1 commit intoopenclaw:mainfrom
simonsickle wants to merge 1 commit intoopenclaw:mainfrom
Conversation
Allow using a different (cheaper) model for periodic heartbeat runs.
When configured, heartbeat runs will use heartbeatProvider/heartbeatModel
instead of the main provider/model, enabling cost optimization
(e.g., using Haiku for heartbeats while keeping Opus for conversations).
Example config:
"agent": {
"provider": "anthropic",
"model": "claude-opus-4-5",
"heartbeatProvider": "anthropic",
"heartbeatModel": "claude-3-5-haiku-20241022",
"heartbeatMinutes": 30
}
Contributor
|
Thanks, will take over. I'll group this more so it's "heartbeat": { |
Contributor
|
Merged via 9f7b1f0 (agent.heartbeat config + model override). |
7 tasks
alexprime1889-prog
pushed a commit
to alexprime1889-prog/moltbot
that referenced
this pull request
Feb 8, 2026
slathrop
referenced
this pull request
in slathrop/openclaw-js
Feb 11, 2026
Tasks completed: 2/2 - Port commit #50 (lore revert) and #53 (bird skill removal) - Port commit #62 (Docker .mjs entrypoint support) SUMMARY: .planning/phases/12-memory-qmd-hardening/12-03-SUMMARY.md
songliu0403-rgb
pushed a commit
to songliu0403-rgb/openclaw
that referenced
this pull request
Feb 26, 2026
…ges to enhance branch (openclaw#50)
heatherstew44-maker
pushed a commit
to heatherstew44-maker/openclaw
that referenced
this pull request
Mar 8, 2026
fix(utils): use virtual key codes for cross-layout paste
CoffeeNoir
pushed a commit
to CoffeeNoir/openclaw
that referenced
this pull request
Mar 8, 2026
… and progressRouter (PR openclaw#51)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Allow using a different (cheaper) model for periodic heartbeat runs. When configured, heartbeat runs will use heartbeatProvider/heartbeatModel instead of the main provider/model, enabling cost optimization (e.g., using Haiku for heartbeats while keeping Opus for conversations).
Example config: