UNPKG

@promptbook/remote-client

Version:

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

14 lines (13 loc) 382 B
import type { CommonTaskJson } from './CommonTaskJson'; /** * Task for simple concatenation of strings * * Note: [🚉] This is fully serializable as JSON * @see https://github.com/webgptorg/promptbook/discussions/17 */ export type SimpleTaskJson = CommonTaskJson & { readonly taskType: 'SIMPLE_TASK'; }; /** * TODO: [🍙] Make some standard order of json properties */