Manage Assistants
Update an assistant
Update an existing assistant. You can modify the assistant's instructions.
For guidance and examples, see Manage assistants.
patch/assistants/{assistant_name}
Path parameters
assistant_namestring required
The name of the assistant to update.
Headers
X-Pinecone-Api-Versionstring required
Required date-based version header
Request body
Example request
{
"instructions": "Answer questions with clear, helpful answers. Keep the tone friendly and easy to follow.",
"metadata": {
"role": "Customer Support Helper",
"team": "Operations"
}
}Response
Update request successful.
Example response
{
"instructions": "Answer questions with clear, helpful answers. Keep the tone friendly and easy to follow.",
"metadata": {
"role": "Customer Support Helper",
"team": "Operations"
}
}