UNPKG

@promptbook/vercel

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

24 lines (23 loc) 892 B
import type { AvailableModel } from '../../execution/AvailableModel'; import type { number_usd } from '../../types/typeAliases'; /** * List of available Deepseek models with descriptions * * Note: Synced with official API docs at 2025-08-20 * * @see https://www.deepseek.com/models * @public exported from `@promptbook/deepseek` */ export declare const DEEPSEEK_MODELS: ReadonlyArray<AvailableModel & { modelDescription?: string; pricing?: { readonly prompt: number_usd; readonly output: number_usd; }; }>; /** * TODO: [🧠] Add information about context window sizes, capabilities, and relative performance characteristics * TODO: [🎰] Some mechanism to auto-update available models * TODO: [🧠] Verify pricing information is current with Deepseek's official documentation * Note: [💞] Ignore a discrepancy between file name and entity name */