Playbooks Configuration System¶
Playbooks uses playbooks.toml
file for configuration.
Default Configuration¶
The default configuration is in the playbooks
package here.
playbooks.toml
debug = true
timeout_s = 60
[model]
provider = "anthropic"
name = "claude-sonnet-4-20250514"
temperature = 0.2
# Specific model overrides can be added
# [model.execution]
# [model.compilation]
[llm_cache]
enabled = true
type = "disk"
path = ".llm_cache"
[langfuse]
enabled = false
See config.py for how to override the default configuration.
$TODO: Add friendly documentation here.