MVFM

anthropic/list_models

List available models with optional pagination

const app = mvfm(prelude, console_, anthropic_);
const prog = app({}, ($) => {
  const page = $.anthropic.models.list({ limit: 10 });
  return $.console.log(page);
});
await fold(defaults(app, { anthropic: crystalBallAnthropicInterpreter }), prog);
Ctrl+Enter