UNPKG

@promptbook/node

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

18 lines (17 loc) 551 B
import type { AvailableModel } from '../../execution/AvailableModel'; import type { number_usd } from '../../types/number_usd'; /** * List of available Anthropic Claude models with pricing * * Note: Synced with official API docs at 2026-03-22 * * @see https://docs.anthropic.com/en/docs/models-overview * * @public exported from `@promptbook/anthropic-claude` */ export declare const ANTHROPIC_CLAUDE_MODELS: ReadonlyArray<AvailableModel & { pricing?: { readonly prompt: number_usd; readonly output: number_usd; }; }>;