@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
13 lines (12 loc) • 381 B
TypeScript
import type { string_knowledge_source_content } from '../../types/string_knowledge_source_content';
/**
* 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;
};