| 46 | } |
| 47 | |
| 48 | export interface EngineOverrides { |
| 49 | /** Inject a custom quick-thinking LLM (e.g. a test stub). */ |
| 50 | quick?: LlmClient; |
| 51 | /** Inject a custom deep-thinking LLM (e.g. a test stub). */ |
| 52 | deep?: LlmClient; |
| 53 | /** Inject a custom fetch (used by data vendors; useful for tests). */ |
| 54 | fetchImpl?: typeof fetch; |
| 55 | } |
| 56 | |
| 57 | export function createEngine( |
| 58 | config: ResolvedConfig, |
nothing calls this directly
no outgoing calls
no test coverage detected