| 1 | import { loadConfig } from "../utils/config"; |
| 2 | |
| 3 | interface ChatMessage { |
| 4 | role: "system" | "user" | "assistant"; |
| 5 | content: string; |
| 6 | } |
| 7 | |
| 8 | interface AIResponse { |
| 9 | content: string; |
nothing calls this directly
no outgoing calls
no test coverage detected