delete_thread
Remove a conversation thread permanently from OpenAI servers and local database. This action cannot be undone.
Instructions
Deletes a conversation thread from both OpenAI's servers and the local database. This action is irreversible.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
thread_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"thread_id": {
"title": "Thread Id",
"type": "string"
}
},
"required": [
"thread_id"
],
"type": "object"
}