reset_session
Clear chat history while maintaining the session ID to start fresh when switching tasks. Ask the user before resetting.
Instructions
Reset a session's chat history (keep same session ID). Use for a clean slate when the task changes; ask the user before resetting.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | The session ID to reset |
Input Schema (JSON Schema)
{
"properties": {
"session_id": {
"description": "The session ID to reset",
"type": "string"
}
},
"required": [
"session_id"
],
"type": "object"
}