@anthropic-ai/sdk
Version:
The official TypeScript library for the Anthropic API
18 lines • 551 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.betaMemoryTool = betaMemoryTool;
function betaMemoryTool(handlers) {
return {
type: 'memory_20250818',
name: 'memory',
parse: (content) => content,
run: (args) => {
const handler = handlers[args.command];
if (!handler) {
throw new Error(`${args.command} not implemented`);
}
return handler.bind(handlers)(args);
},
};
}
//# sourceMappingURL=memory.js.map