memoryBlockType.ts
1 /** 2 * Generated by orval v7.9.0 🍺 3 * Do not edit manually. 4 * Cogni API 5 * A minimal FastAPI that directly passes user queries to OpenAI, augmented with Cogni memory. 6 * OpenAPI spec version: 0.1.0 7 */ 8 9 /** 10 * Block type used to determine structure and relationships 11 */ 12 export type MemoryBlockType = typeof MemoryBlockType[keyof typeof MemoryBlockType]; 13 14 15 // eslint-disable-next-line @typescript-eslint/no-redeclare 16 export const MemoryBlockType = { 17 knowledge: 'knowledge', 18 task: 'task', 19 project: 'project', 20 doc: 'doc', 21 interaction: 'interaction', 22 log: 'log', 23 epic: 'epic', 24 bug: 'bug', 25 } as const;