How versions work
Create the agent
Creating an agent is its first deploy — version 1. From that point on it can be run interactively, called through the API, or scheduled.
Edit and deploy again
Change the configuration and deploy again, and the version number increments. Each deploy is a new, distinct version with its own settings.
Versions provide history, but the current API does not expose rollback or selection of an older version. To restore an earlier configuration, deploy that configuration again as a new version.
Deploys are validated up front — connected apps must be reachable, the schedule must be valid, and any delegates must be attachable. If validation doesn’t pass, the deploy doesn’t go through and your previous version stays exactly as it was.
The knowledge base is fixed at creation
An agent’s knowledge base is chosen when you create it and stays fixed for the life of that agent. This keeps every version of the agent grounded in the same source of truth, so results stay comparable across deploys. To build on a different knowledge base, use Copy (fork):In-flight runs stay stable
Versioning is designed so that improving an agent never disrupts work already underway:- A running conversation stays pinned to the agent version it started on, so in-flight work finishes with the settings it began with.
- New runs use the latest version, so improvements take effect the next time the agent is started.
- Skills and callable agents always resolve to their latest version at run time, so shared building blocks stay current everywhere they’re used.
Archiving
Archiving an agent takes it out of active use while keeping its history intact:- Its schedule is disabled, so no further background runs fire.
- Its run history is kept, so you can still open and review past runs.
Archiving keeps the agent record and its runs. If a delegate you call becomes archived, calling agents receive a graceful message and continue. See Delegation.
Next steps
Schedule the agent
Set a cadence for automatic background runs.
Run it and review history
Start runs and open the chats they produce.