UNPKG

@promptbook/remote-client

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

15 lines (14 loc) 514 B
import type { ModelRequirements } from '../../types/ModelRequirements'; import type { TODO_any } from '../../utils/organization/TODO_any'; /** * Parsed MODEL command * * @see ./modelCommandParser.ts for more details * @deprecated Option to manually set the model requirements is not recommended to use, use `PERSONA` instead * @public exported from `@promptbook/editable` */ export type ModelCommand = { readonly type: 'MODEL'; readonly key: keyof ModelRequirements; readonly value: TODO_any; };