Cloudflare Workers · Cloudflare Workers docs
Cloudflare Workers provides a serverless execution environment that allows you to create new applications or augment existing ones without configuring …
{
"name" : "memory_tool",
"description" : "The memory_tool function allows you to persist information across conversations. Write whatever information you want to remember. The information will appear in the model set context below in future conversations. Note that this function can only save data. It cannot retrieve data.",
"parameters" : {
"type" : "object",
"properties" : {
"id" : {
"type" : "integer",
"description" : "The ID of the memory: an integer if updating the memory, or null if this is a new memory entry."
},
"content" : {
"type" : "string",
"description" : "The information you want to persist."
}
},
"required" : [
"content"
]
}
}