| 58 | } |
| 59 | |
| 60 | export interface STMModule { |
| 61 | id: string |
| 62 | name: string |
| 63 | description: string |
| 64 | enabled: boolean |
| 65 | transformer: (input: string) => string |
| 66 | } |
| 67 | |
| 68 | // Memory System - persistent facts about the user |
| 69 | export type MemoryType = 'fact' | 'preference' | 'instruction' |
nothing calls this directly
no outgoing calls
no test coverage detected