delete_stateful_response
Permanently remove conversation responses from xAI's servers for privacy protection and data cleanup. Once deleted, responses cannot be retrieved or continued.
Instructions
Permanently deletes a stateful conversation response from xAI's servers.
Use this when you want to remove a conversation for privacy or cleanup purposes.
Once deleted, you won't be able to retrieve it or continue from it. This is
permanent, so make sure you really want to delete it!
Args:
response_id: The ID of the response you want to delete
Returns a dict confirming the deletion with 'response_id', 'deleted' (True/False),
and a confirmation message.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| response_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"response_id": {
"title": "Response Id",
"type": "string"
}
},
"required": [
"response_id"
],
"type": "object"
}