| 9 | const DEFAULT_CACHE_TTL_MS = 24 * 60 * 60 * 1000; |
| 10 | |
| 11 | export interface LearnSessionCacheValue { |
| 12 | endpoint: string; |
| 13 | sessionId?: string; |
| 14 | tools?: ListedTool[]; |
| 15 | updatedAt: string; |
| 16 | expiresAt: string; |
| 17 | } |
| 18 | |
| 19 | export interface LearnSessionCacheStore { |
| 20 | read(endpoint: string): Promise<LearnSessionCacheValue | undefined>; |
nothing calls this directly
no outgoing calls
no test coverage detected