@promptbook/remote-client
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
12 lines (11 loc) • 317 B
TypeScript
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';
};