* Internal node for LRU linked list
| 16 | * Internal node for LRU linked list |
| 17 | */ |
| 18 | interface LruNode { |
| 19 | sessionId: string; |
| 20 | params: CreateSessionParams; |
| 21 | stagehand: V3 | null; |
| 22 | loggerRef: { current?: (message: LogLine) => void }; |
| 23 | expiry: number; |
| 24 | prev: LruNode | null; |
| 25 | next: LruNode | null; |
| 26 | } |
| 27 | |
| 28 | function hasProviderAuth(model: Api.ModelConfig): boolean { |
| 29 | return "auth" in model && model.auth !== undefined; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…