| 48 | |
| 49 | // We are storing our memory using entities, relations, and observations in a graph structure |
| 50 | export interface Entity { |
| 51 | name: string; |
| 52 | entityType: string; |
| 53 | observations: string[]; |
| 54 | } |
| 55 | |
| 56 | export interface Relation { |
| 57 | from: string; |
nothing calls this directly
no outgoing calls
no test coverage detected