UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

12 lines (11 loc) 300 B
import type { CommonTaskJson } from './CommonTaskJson'; /** * Task for prompt to user * * Note: [🚉] This is fully serializable as JSON * * @see https://github.com/webgptorg/promptbook/discussions/76 */ export type DialogTaskJson = CommonTaskJson & { readonly taskType: 'DIALOG_TASK'; };