For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PlaygroundDiscordStatusDashboardSign Up >
DocumentationSDK ReferenceGraphiti
DocumentationSDK ReferenceGraphiti
  • SDK Reference
      • POSTAdd User
      • GETGet Users
      • GETGet User
      • DELDelete User
      • PATCHUpdate User
      • GETGet User Node
      • GETGet User Threads
      • GETWarm User Cache
      • GETList User Instructions
      • POSTAdd User Instructions
      • DELDelete User Instructions
LogoLogo
PlaygroundDiscordStatusDashboardSign Up >
SDK ReferenceUser

Delete User Instructions

DELETE
https://api.getzep.com/api/v2/user-summary-instructions
DELETE
/api/v2/user-summary-instructions
1from zep_cloud import Zep
2
3client = Zep(
4 api_key="YOUR_API_KEY",
5)
6client.user.delete_user_summary_instructions()
1{
2 "message": "string"
3}

Deletes user summary/instructions for users or project wide defaults.

Was this page helpful?
Previous

Create Context Template

Next
Built with

Request

The instructions to delete
instruction_nameslist of stringsOptional
Unique identifier for the instructions to be deleted. If empty deletes all instructions.
user_idslist of stringsOptional

Determines which users will have their custom instructions deleted. If no users are provided, the project-wide custom instructions will be effected.

Response

Instructions deleted successfully
messagestring

Errors

400
Bad Request Error
404
Not Found Error
500
Internal Server Error