anthropic/cancel_message_batch
Cancel an in-progress message batch
const app = mvfm(prelude, console_, anthropic_);
const prog = app({}, ($) => {
const batch = $.anthropic.messages.batches.cancel("msgbatch-abc123");
return $.console.log(batch);
});
await fold(defaults(app, { anthropic: crystalBallAnthropicInterpreter }), prog); Ctrl+Enter