anthropic/retrieve_model
Retrieve details about a specific model
const app = mvfm(prelude, console_, anthropic_);
const prog = app({}, ($) => {
const model = $.anthropic.models.retrieve("claude-sonnet-4-20250514");
return $.console.log(model);
});
await fold(defaults(app, { anthropic: crystalBallAnthropicInterpreter }), prog); Ctrl+Enter