update_thread
Modify the name and description of an existing conversation thread, updating both local storage and the corresponding OpenAI thread object.
Instructions
Updates the name and/or description of a locally saved conversation thread. Both the local database and the OpenAI thread object will be updated.
The thread ID can be retrieved from the list_threads tool.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
name | No | ||
thread_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"thread_id": {
"title": "Thread Id",
"type": "string"
}
},
"required": [
"thread_id"
],
"type": "object"
}