Elimina un archivio di memoria
DELETE/v1/memory_stores/{memory_store_id}
Elimina un archivio di memoria
Parameters
Returns
Elimina un archivio di memoria
<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
$client = new Client(apiKey: 'my-anthropic-api-key');
$betaManagedAgentsDeletedMemoryStore = $client->beta->memoryStores->delete(
'memory_store_id',
betas: [AnthropicBeta::MESSAGE_BATCHES_2024_09_24],
workspaceID: 'wrkspc_011CZkZaBF1tNoB5wlCeusgy',
);
var_dump($betaManagedAgentsDeletedMemoryStore);Response 200
{
"id": "id",
"type": "memory_store_deleted"
}Returns Examples
Response 200
{
"id": "id",
"type": "memory_store_deleted"
}