What is a Configuration?
A Configuration is a versioned set of settings that controls how an agent behaves. It answers:“What should this agent do right now, and what did it do before?”Examples of things stored in configurations:
- system prompts
- model parameters (temperature, max tokens)
- tool selections
- business rules
- thresholds and limits
Configurations are immutable. When you change settings, a new version is created. The old version is never modified.
Why configurations exist
Hardcoding agent behavior means redeploying to change anything. Configurations give you:- Live updates — change behavior without redeploying
- Version history — see exactly what changed and when
- Rollback — restore any previous version instantly
- Validation — settings are validated against a JSON Schema before saving
- Variants — run different configurations side by side
Structure
A configuration contains:Schema and value
Every configuration has two parts: a schema and a value. The schema defines the shape. The value holds the data.Example schema
Example value
Variants
Variants let you maintain multiple configuration branches for the same agent. Common patterns:
Each variant has its own version history. You switch between them by updating the agent’s active configuration.
Version history
Every change creates a new version. Nothing is overwritten. This means you can:- see the full history of changes
- compare versions
- restore any previous version (creates a new version with the old values)
- understand exactly what an agent was configured to do at any point in time
Using configurations in your agent
Your agent reads its active configuration at the start of each session:Creating a new version
What configurations are not
Configurations are not:- environment variables
- secrets management
- feature flags
- a key-value store
When to use configurations
Use configurations when:- you want to change agent behavior without redeploying
- you need a history of what changed
- settings should be validated before applying
- different scenarios need different settings
- non-engineers need to adjust agent behavior

