(entry: EmbedProbeEntry)
| 58 | export const embedProbeRing = new RingBuffer<EmbedProbeEntry>(EMBED_PROBE_CAPACITY); |
| 59 | |
| 60 | export function recordEmbedProbe(entry: EmbedProbeEntry): void { |
| 61 | embedProbeRing.push(entry); |
| 62 | } |
| 63 | |
| 64 | const CURSOR_UA_RE = UA_PATTERNS.cursor; |
| 65 | const CODEX_UA_RE = UA_PATTERNS.codex; |
no test coverage detected