(value: { endpoint: string; sessionId?: string; tools?: ListedTool[] })
| 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 |
no outgoing calls
no test coverage detected