()
| 16 | import { MODEL_CONFIGS } from '../oracle.js'; |
| 17 | |
| 18 | const isTty = (): boolean => Boolean(process.stdout.isTTY); |
| 19 | const dim = (text: string): string => (isTty() ? kleur.dim(text) : text); |
| 20 | export const MAX_RENDER_BYTES = 200_000; |
| 21 |
no outgoing calls
no test coverage detected