@promptbook/langtail
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
12 lines (11 loc) • 340 B
TypeScript
import type { string_knowledge_source_content } from '../../types/typeAliases';
/**
* Parsed KNOWLEDGE command
*
* @see ./knowledgeCommandParser.ts for more details
* @private within the commands folder
*/
export type KnowledgeCommand = {
readonly type: 'KNOWLEDGE';
readonly sourceContent: string_knowledge_source_content;
};