anthropic/list_message_batches
List message batches with optional pagination
const app = mvfm(prelude, console_, anthropic_);
const prog = app({}, ($) => {
const page = $.anthropic.messages.batches.list({ limit: 5 });
return $.console.log(page);
});
await fold(defaults(app, { anthropic: crystalBallAnthropicInterpreter }), prog); Ctrl+Enter