stop_intensive_chat
End and close an active intensive chat session to free system resources. Use after completing all interactions with 'ask_intensive_chat' to cleanly terminate the session.
Instructions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | ID of the intensive chat session to stop |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sessionId": {
"description": "ID of the intensive chat session to stop",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}