MCPcopy Create free account
hub / github.com/QuantiaAI/helm-agents / EngineOverrides

Interface EngineOverrides

packages/core/src/engine.ts:48–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46}
47
48export 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
57export function createEngine(
58 config: ResolvedConfig,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected