session/delete method allows Clients to remove sessions from an Agent’s session/list results. This gives users a standard way to manage session history across ACP Clients and Agents.
Before deleting sessions, Clients MUST first complete the initialization phase and verify the Agent supports this capability.
Checking Support
Before attempting to delete a session, Clients MUST verify that the Agent supports this capability by checking thesessionCapabilities.delete field in the initialize response:
sessionCapabilities.delete is omitted or null, the Agent does not support deleting sessions and Clients MUST NOT attempt to call session/delete. Supplying {} means the Agent supports the method.
Deleting a Session
Clients delete a session by callingsession/delete with the session ID to remove from session history:
Unique identifier for the session to delete.
Semantics
- Deleted sessions no longer appear in future
session/listresults. - Deleting an already-deleted session, or a session that never existed, SHOULD succeed silently.
- Agents may implement soft delete or hard delete. ACP only specifies the user-facing session-list behavior.
- Behavior for
session/loadon a deleted session is implementation-defined. - Behavior for deleting an active session is implementation-defined.