MCPcopy Index your code
hub / github.com/browserbase/stagehand / LruNode

Interface LruNode

packages/server-v3/src/lib/InMemorySessionStore.ts:18–26  ·  view source on GitHub ↗

* Internal node for LRU linked list

Source from the content-addressed store, hash-verified

16 * Internal node for LRU linked list
17 */
18interface 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
28function hasProviderAuth(model: Api.ModelConfig): boolean {
29 return "auth" in model && model.auth !== undefined;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…