UNPKG

@promptbook/remote-client

Version:

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

12 lines (11 loc) 358 B
import type { string_knowledge_source_content } from '../../types/typeAliases'; /** * Parsed KNOWLEDGE command * * @see ./knowledgeCommandParser.ts for more details * @public exported from `@promptbook/editable` */ export type KnowledgeCommand = { readonly type: 'KNOWLEDGE'; readonly knowledgeSourceContent: string_knowledge_source_content; };