| 17 | } |
| 18 | |
| 19 | export interface LearnSessionCacheStore { |
| 20 | read(endpoint: string): Promise<LearnSessionCacheValue | undefined>; |
| 21 | write(value: { endpoint: string; sessionId?: string; tools?: ListedTool[] }): Promise<LearnSessionCacheValue>; |
| 22 | clear(endpoint: string): Promise<void>; |
| 23 | } |
| 24 | |
| 25 | interface CacheFileShape { |
| 26 | version: number; |
no outgoing calls
no test coverage detected