MVFM

anthropic/delete_message_batch

Delete a message batch by ID

const app = mvfm(prelude, console_, anthropic_);
const prog = app({}, ($) => {
  const result = $.anthropic.messages.batches.delete("msgbatch-abc123");
  return $.console.log(result);
});
await fold(defaults(app, { anthropic: crystalBallAnthropicInterpreter }), prog);
Ctrl+Enter