| 62 | // ─── Config ────────────────────────────────────────────────────────────────── |
| 63 | |
| 64 | interface LLMConfig { |
| 65 | apiEndpoint: string; |
| 66 | apiKey: string; |
| 67 | model: string; |
| 68 | termsPath?: string; |
| 69 | delayMs?: number; |
| 70 | } |
| 71 | |
| 72 | function loadConfig(): LLMConfig { |
| 73 | const configPath = path.join(SCRIPTS_DIR, "llm-config.json"); |
nothing calls this directly
no outgoing calls
no test coverage detected