(threadId)
| 9 | const ACTIVE_RUN_CLIENT_ID = `${Date.now()}-${Math.random().toString(36).slice(2, 10)}` |
| 10 | |
| 11 | const getActiveRunStorageKey = (threadId) => `active_run:${threadId}` |
| 12 | |
| 13 | const getThreadIdFromObject = (value) => { |
| 14 | if (!value || typeof value !== 'object') return '' |
no outgoing calls
no test coverage detected