| 3 | import { type AllAssistantMiddlewareArgs, extractThreadInfo } from './Assistant'; |
| 4 | |
| 5 | export interface AssistantThreadContextStore { |
| 6 | get: GetThreadContextFn; |
| 7 | save: SaveThreadContextFn; |
| 8 | } |
| 9 | |
| 10 | export type GetThreadContextFn = (args: AllAssistantMiddlewareArgs) => Promise<AssistantThreadContext>; |
| 11 |
nothing calls this directly
no outgoing calls
no test coverage detected