@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
19 lines (18 loc) • 544 B
TypeScript
import type { AvailableModel } from '../../execution/AvailableModel';
import type { number_usd } from '../../types/number_usd';
/**
* List of available Deepseek models with descriptions
*
* Note: Synced with official API docs at 2026-03-22
*
* @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;
};
}>;